(self)
| 39 | |
| 40 | class Copilot(Framework.TestCase): |
| 41 | def setUp(self): |
| 42 | super().setUp() |
| 43 | self.org_name = "BeaverSoftware" |
| 44 | self.copilot = self.g.get_organization(self.org_name).get_copilot() |
| 45 | |
| 46 | def testAttributes(self): |
| 47 | self.assertEqual(self.copilot.org_name, "BeaverSoftware") |
nothing calls this directly
no test coverage detected