(self)
| 99 | ) |
| 100 | |
| 101 | def testLazyAttributes(self): |
| 102 | deploy = self.g.withLazy(True).get_repo("lazy/repo").get_deployment(42) |
| 103 | self.assertEqual(str(deploy), 'Deployment(url="/repos/lazy/repo/deployments/42", id=42)') |
| 104 | self.assertEqual(deploy.id, 42) |
| 105 | self.assertEqual(deploy.url, "/repos/lazy/repo/deployments/42") |
nothing calls this directly
no test coverage detected