(self)
| 176 | ) |
| 177 | |
| 178 | def testSearchReposWithNoResults(self): |
| 179 | repos = self.g.search_repositories("doesnotexist") |
| 180 | self.assertEqual(repos.totalCount, 0) |
| 181 | |
| 182 | def testSearchIssues(self): |
| 183 | issues = self.g.search_issues("compile", sort="comments", order="desc", language="C++") |
nothing calls this directly
no test coverage detected