Fixture for the TripoClient.
(self, api_key)
| 22 | |
| 23 | @pytest.fixture |
| 24 | def client(self, api_key): |
| 25 | """Fixture for the TripoClient.""" |
| 26 | return TripoClient(api_key=api_key) |
| 27 | |
| 28 | def test_init_with_api_key(self, api_key): |
| 29 | """Test initializing the client with an API key.""" |