(self)
| 145 | self.assertEqual(list(gist.files.keys()), ["baz.txt"]) |
| 146 | |
| 147 | def testCreateComment(self): |
| 148 | gist = self.g.get_gist("2729810") |
| 149 | comment = gist.create_comment("Comment created by PyGithub") |
| 150 | self.assertEqual(comment.id, 323629) |
| 151 | |
| 152 | def testGetComments(self): |
| 153 | gist = self.g.get_gist("2729810") |
nothing calls this directly
no test coverage detected