(self)
| 289 | self.assertEqual(comment.id, 886298) |
| 290 | |
| 291 | def testGetComments(self): |
| 292 | epoch = datetime(1970, 1, 1, 0, 0) |
| 293 | comments = self.pull.get_comments(sort="updated", direction="desc", since=epoch) |
| 294 | self.assertListKeyEqual(comments, lambda c: c.id, [197784357, 1580134]) |
| 295 | |
| 296 | def testCreateIssueComment(self): |
| 297 | comment = self.pull.create_issue_comment("Issue comment created by PyGithub") |
nothing calls this directly
no test coverage detected