[tests] Test parameters passed in URL

Fixes #7
This commit is contained in:
kleph 2020-03-03 00:29:50 +01:00
parent fdc5423a8d
commit d167fe1b52

View file

@ -21,3 +21,16 @@ def test_slash(client):
response = client.get('/')
assert response.status_code == 200
assert b'<title>beer</title>' in response.data
def test_parameters(client):
"""Test wiwth no param"""
hours = '18'
minutes = '30'
response = client.get('/'+hours)
assert response.status_code == 200
assert b'<title>beer</title>' in response.data
response = client.get('/'+hours+'/'+minutes)
assert response.status_code == 200
assert b'<title>beer</title>' in response.data