(self)
| 122 | ) |
| 123 | |
| 124 | def testCreateComment(self): |
| 125 | comment = self.commit.create_comment("Comment created by PyGithub") |
| 126 | self.assertEqual(comment.id, 1361949) |
| 127 | self.assertEqual(comment.line, None) |
| 128 | self.assertEqual(comment.path, None) |
| 129 | self.assertEqual(comment.position, None) |
| 130 | |
| 131 | def testCreateCommentOnFileLine(self): |
| 132 | comment = self.commit.create_comment( |
nothing calls this directly
no test coverage detected