(self)
| 338 | self.assertEqual(len(list(self.repo.get_issues())), 456) |
| 339 | |
| 340 | def testCustomPerPageWithNoUrlParams(self): |
| 341 | self.g.per_page = 100 |
| 342 | self.assertEqual(len(list(self.repo.get_comments())), 325) |
| 343 | |
| 344 | def testCustomPerPageWithGetPage(self): |
| 345 | self.g.per_page = 100 |
nothing calls this directly
no test coverage detected