(self)
| 320 | ) |
| 321 | |
| 322 | def testGetReposWithAllArgs(self): |
| 323 | self.assertListKeyEqual( |
| 324 | self.user.get_repos(type="owner", sort="created", direction="asc"), |
| 325 | lambda r: r.name, |
| 326 | [ |
| 327 | "DrawTurksHead", |
| 328 | "vincent-jacques.net", |
| 329 | "IpMap", |
| 330 | "MockMockMock", |
| 331 | "ActionTree", |
| 332 | "InteractiveCommandLine", |
| 333 | "RecursiveDocument", |
| 334 | "MarblesCollide", |
| 335 | "jacquev6.github.io", |
| 336 | "LowVoltage", |
| 337 | ], |
| 338 | ) |
| 339 | |
| 340 | def testGetWatched(self): |
| 341 | self.assertListKeyEqual( |
nothing calls this directly
no test coverage detected