(self)
| 9 | |
| 10 | class TestPlusAPI(unittest.TestCase): |
| 11 | def setUp(self): |
| 12 | self.api_key = "test_api_key" |
| 13 | self.api = PlusAPI(self.api_key) |
| 14 | self.org_uuid = "test-org-uuid" |
| 15 | |
| 16 | def test_init(self): |
| 17 | self.assertEqual(self.api.api_key, self.api_key) |