(self)
| 47 | |
| 48 | class IssueComment(Framework.TestCase): |
| 49 | def setUp(self): |
| 50 | super().setUp() |
| 51 | self.comment = self.g.get_repo("PyGithub/PyGithub").get_issue(28).get_comment(20227753) |
| 52 | |
| 53 | def testAttributes(self): |
| 54 | self.assertEqual(self.comment.author_association, "CONTRIBUTOR") |
nothing calls this directly
no test coverage detected