(self)
| 41 | |
| 42 | class GitRef(Framework.TestCase): |
| 43 | def setUp(self): |
| 44 | super().setUp() |
| 45 | self.ref = self.g.get_user().get_repo("PyGithub").get_git_ref("heads/BranchCreatedByPyGithub") |
| 46 | |
| 47 | def testAttributes(self): |
| 48 | self.assertIsNone(self.ref.node_id) |
nothing calls this directly
no test coverage detected