(self)
| 63 | self.assertEqual(self.proj.url, "https://api.github.com/projects/1682941") |
| 64 | |
| 65 | def testLazyAttributes(self): |
| 66 | project = self.g.withLazy(True).get_project(42) |
| 67 | self.assertEqual(str(project), "Project(name=None)") |
| 68 | self.assertEqual(project.id, 42) |
| 69 | self.assertEqual(project.url, "/projects/42") |
| 70 | |
| 71 | def testGetOrganizationProjects(self): |
| 72 | expectedProjects = ["Project1", "Project2", "Project3"] |
nothing calls this directly
no test coverage detected