(self)
| 44 | |
| 45 | class DeploymentStatus(Framework.TestCase): |
| 46 | def setUp(self): |
| 47 | super().setUp() |
| 48 | self.deployment = self.g.get_user().get_repo("PyGithub").get_deployment(263877258) |
| 49 | self.status = self.deployment.get_status(388454671) |
| 50 | |
| 51 | def testAttributes(self): |
| 52 | self.assertEqual(self.status.created_at, datetime(2020, 8, 26, 14, 32, 51, tzinfo=timezone.utc)) |
nothing calls this directly
no test coverage detected