(self)
| 44 | |
| 45 | class GitCommit(Framework.TestCase): |
| 46 | def setUp(self): |
| 47 | super().setUp() |
| 48 | self.commit = self.g.get_repo("PyGithub/PyGithub").get_git_commit("3d84a47a88f6757514cb3ee91b829f53ba09e7e0") |
| 49 | |
| 50 | def testAttributes(self): |
| 51 | self.assertEqual(self.commit.author.name, "Enrico Minack") |
nothing calls this directly
no test coverage detected