Files
notifications-admin/tests/app/main/views/test_user_profile.py

6 lines
228 B
Python
Raw Normal View History

def test_should_show_overview_page(notifications_admin):
response = notifications_admin.test_client().get('/user-profile')
2016-01-12 09:58:21 +00:00
assert 'Your profile' in response.get_data(as_text=True)
assert response.status_code == 200