(self)
| 52 | |
| 53 | class PaginatedList(Framework.TestCase): |
| 54 | def setUp(self): |
| 55 | super().setUp() |
| 56 | self.repo = self.g.get_user("openframeworks").get_repo("openFrameworks") |
| 57 | self.list = self.repo.get_issues() |
| 58 | self.licenses = self.g.get_enterprise("beaver-group").get_consumed_licenses() |
| 59 | |
| 60 | def testIsApiType(self): |
| 61 | self.assertTrue(self.list.is_rest) |
nothing calls this directly
no test coverage detected