mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
8 lines
261 B
Python
8 lines
261 B
Python
|
|
|
|
def test_should_return_verify_template(notifications_admin, notifications_admin_db):
|
|
response = notifications_admin.test_client().get('/verify')
|
|
|
|
assert response.status_code == 200
|
|
assert 'Activate your account' in response.get_data(as_text=True)
|