(self)
| 301 | ) |
| 302 | |
| 303 | def testGetRepos(self): |
| 304 | self.assertListKeyEqual( |
| 305 | self.user.get_repos(), |
| 306 | lambda r: r.name, |
| 307 | [ |
| 308 | "TestPyGithub", |
| 309 | "django", |
| 310 | "PyGithub", |
| 311 | "developer.github.com", |
| 312 | "acme-public-website", |
| 313 | "C4Planner", |
| 314 | "DrawTurksHead", |
| 315 | "DrawSyntax", |
| 316 | "QuadProgMm", |
| 317 | "Boost.HierarchicalEnum", |
| 318 | "ViDE", |
| 319 | ], |
| 320 | ) |
| 321 | |
| 322 | def testGetReposWithAllArgs(self): |
| 323 | self.assertListKeyEqual( |
nothing calls this directly
no test coverage detected