(self)
| 115 | ) |
| 116 | |
| 117 | def testGetComments(self): |
| 118 | self.assertListKeyEqual( |
| 119 | self.commit.get_comments(), |
| 120 | lambda c: c.id, |
| 121 | [1347033, 1347083, 1347397, 1349654], |
| 122 | ) |
| 123 | |
| 124 | def testCreateComment(self): |
| 125 | comment = self.commit.create_comment("Comment created by PyGithub") |
nothing calls this directly
no test coverage detected