Adding pytest config / env and basic auth

This commit is contained in:
evilchili
2022-11-19 16:06:23 -08:00
parent e28a2ffb95
commit 27b97f2bc4
8 changed files with 60 additions and 10 deletions
+6
View File
@@ -1,7 +1,13 @@
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.'