def test_index(): response = app.get('/') assert 'Hello world!' in str(response) eq_(1, 1, "Math is weird on your planet")
def test_that_fails(): response = app.get('/') assert response