Merge branch 'develop' into volumeList_enhanced_filter

This commit is contained in:
Matthias
2019-11-12 09:31:46 +01:00
14 changed files with 125 additions and 49 deletions

View File

@@ -64,6 +64,10 @@ def test_api_not_found(botclient):
def test_api_unauthorized(botclient):
ftbot, client = botclient
rc = client.get(f"{BASE_URI}/ping")
assert_response(rc)
assert rc.json == {'status': 'pong'}
# Don't send user/pass information
rc = client.get(f"{BASE_URI}/version")
assert_response(rc, 401)