MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / testCreateReviewCommentInReplyTo

Method testCreateReviewCommentInReplyTo

tests/PullRequest.py:232–241  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

230 self.assertEqual(comment.id, 886298)
231
232 def testCreateReviewCommentInReplyTo(self):
233 commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206")
234 comment = self.pull.create_review_comment(
235 "Comment created by PyGithub",
236 commit,
237 "src/github/Issue.py",
238 5,
239 in_reply_to=42,
240 )
241 self.assertEqual(comment.id, 886298)
242
243 def testCreateReviewCommentSubjectType(self):
244 commit = self.repo.get_commit("8a4f306d4b223682dd19410d4a9150636ebe4206")

Callers

nothing calls this directly

Calls 2

get_commitMethod · 0.80
create_review_commentMethod · 0.80

Tested by

no test coverage detected