(self)
| 192 | ) |
| 193 | |
| 194 | def testIntIndexingAfterIteration(self): |
| 195 | with self.replayData("PaginatedList.testIteration.txt"): |
| 196 | self.assertEqual(len(list(self.list)), 333) |
| 197 | self.assertEqual(self.list[11].id, 4507572) |
| 198 | self.assertEqual(self.list[73].id, 3614231) |
| 199 | self.assertEqual(self.list[332].id, 94898) |
| 200 | |
| 201 | def testSliceIndexingInFirstPage(self): |
| 202 | with self.replayData("PaginatedList.testGetFirstPage.txt"): |
nothing calls this directly
no test coverage detected