(self)
| 42 | |
| 43 | class BranchProtection(Framework.TestCase): |
| 44 | def setUp(self): |
| 45 | super().setUp() |
| 46 | self.branch_protection = self.g.get_repo("curvewise-forks/PyGithub").get_branch("master").get_protection() |
| 47 | |
| 48 | def testAttributes(self): |
| 49 | self.assertEqual(self.branch_protection.allow_deletions, False) |
nothing calls this directly
no test coverage detected