(self)
| 221 | self.assertEqual(commits[0].sha, "1265747e992ba7d34a469b6b2f527809f8bf7067") |
| 222 | |
| 223 | def testSearchTopics(self): |
| 224 | topics = self.g.search_topics("python", repositories=">950") |
| 225 | self.assertListKeyBegin( |
| 226 | topics, |
| 227 | lambda r: r.name, |
| 228 | ["python", "django", "flask", "ruby", "scikit-learn", "wagtail"], |
| 229 | ) |
| 230 | |
| 231 | def testPaginateSearchTopics(self): |
| 232 | repos = self.g.search_topics("python", repositories=">950") |
nothing calls this directly
no test coverage detected