(self)
| 56 | |
| 57 | # Ensure that the login page loads correctly |
| 58 | def test_login_page_loads(self): |
| 59 | response = self.client.get('/login') |
| 60 | self.assertIn(b'Please login', response.data) |
| 61 | |
| 62 | # Ensure login behaves correctly with correct credentials |
| 63 | def test_correct_login(self): |
nothing calls this directly
no outgoing calls
no test coverage detected