(self)
| 87 | |
| 88 | class LogInTestCase(APITestCase): |
| 89 | def setUp(self): |
| 90 | factories.UserFactory( |
| 91 | email="test@example.org", |
| 92 | password="test@example.org", |
| 93 | ) |
| 94 | |
| 95 | def test_login(self): |
| 96 | data = { |
nothing calls this directly
no outgoing calls
no test coverage detected