(self)
| 4 | |
| 5 | class TestGithubSearch(unittest.TestCase): |
| 6 | def test_github_search(self): |
| 7 | keyword = "1588080585" |
| 8 | results = github_search(keyword) |
| 9 | self.assertTrue(len(results) >= 1) |
| 10 | result = results[0] |
| 11 | self.assertTrue(result.commit_date) |
| 12 | |
| 13 | |
| 14 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected