diff options
Diffstat (limited to 'budget/tests.py')
| -rw-r--r-- | budget/tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/budget/tests.py b/budget/tests.py index de6317b..a5022ce 100644 --- a/budget/tests.py +++ b/budget/tests.py @@ -411,6 +411,10 @@ class BudgetTestCase(TestCase): follow_redirects=True) self.assertIn("Invalid email address", resp.data) + def test_dashboard(self): + response = self.app.get("/dashboard") + self.assertEqual(response.status_code, 200) + class APITestCase(TestCase): """Tests the API""" |
