(self)
| 43 | |
| 44 | class Reaction(Framework.TestCase): |
| 45 | def setUp(self): |
| 46 | super().setUp() |
| 47 | self.reactions = self.g.get_user("PyGithub").get_repo("PyGithub").get_issue(28).get_reactions() |
| 48 | |
| 49 | def testAttributes(self): |
| 50 | reaction = self.reactions[0] |
nothing calls this directly
no test coverage detected