Test get_api_key when no key is configured.
(self, cache_manager)
| 147 | assert cache_manager.has_api_key() is True |
| 148 | |
| 149 | def test_get_api_key_none(self, cache_manager): |
| 150 | """Test get_api_key when no key is configured.""" |
| 151 | assert cache_manager.get_api_key() is None |
| 152 | |
| 153 | def test_get_api_key_exists(self, cache_manager): |
| 154 | """Test get_api_key when key exists.""" |
nothing calls this directly
no test coverage detected