(self)
| 44 | collaborative_annotation = False |
| 45 | |
| 46 | def test_fetch_progress(self): |
| 47 | response = self.assert_fetch(self.project.admin, status.HTTP_200_OK) |
| 48 | expected = {"total": 1, "remaining": 0, "complete": 1} |
| 49 | self.assertEqual(response.data, expected) |
| 50 | |
| 51 | def test_cannot_affect_others_progress(self): |
| 52 | for member in self.project.staffs: |
nothing calls this directly
no test coverage detected