(self)
| 225 | self.assertEqual(pull.url, "/repos/lazy/repo/pulls/42") |
| 226 | |
| 227 | def testCreateComment(self): |
| 228 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
| 229 | comment = self.pull.create_comment("Comment created by PyGithub", commit, "src/github/Issue.py", 5) |
| 230 | self.assertEqual(comment.id, 886298) |
| 231 | |
| 232 | def testCreateReviewCommentInReplyTo(self): |
| 233 | commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206") |
nothing calls this directly
no test coverage detected