Removed intial app test, to be replaced by test of the real endpoints

This commit is contained in:
Rebecca Law
2015-11-26 10:06:15 +00:00
parent af9e2cf0fa
commit ed609eeec9

View File

@@ -1,10 +0,0 @@
def test_index_returns_200(notifications_admin):
response = notifications_admin.test_client().get('/index')
assert response.status_code == 200
assert response.data.decode('utf-8') == 'Hello from notifications-admin'
def test_helloworld_returns_200(notifications_admin):
response = notifications_admin.test_client().get('/helloworld')
assert response.status_code == 200
assert 'Hello world!' in response.data.decode('utf-8')