(self)
| 38 | |
| 39 | class GithubApp(Framework.TestCase): |
| 40 | def setUp(self): |
| 41 | super().setUp() |
| 42 | self.app_slug = "github-actions" |
| 43 | self.app = self.g.get_app(slug=self.app_slug) |
| 44 | # fetch lazy object |
| 45 | self.app.id |
| 46 | |
| 47 | def testAttributes(self): |
| 48 | app = self.app |