grooveondemand/test/test_ondemand.py
2022-11-19 16:06:23 -08:00

14 lines
326 B
Python

from boddle import boddle
from groove import ondemand
import os
def test_ondemand_server():
with boddle():
assert ondemand.index() == 'Groovy.'
def test_ondemand_auth():
with boddle(auth=(os.environ.get('USERNAME'), os.environ.get('PASSWORD'))):
assert ondemand.admin() == 'Authenticated. Groovy.'