Test has_api_key when no key is configured.
(self, cache_manager)
| 138 | assert saved_config == config_data |
| 139 | |
| 140 | def test_has_api_key_false(self, cache_manager): |
| 141 | """Test has_api_key when no key is configured.""" |
| 142 | assert cache_manager.has_api_key() is False |
| 143 | |
| 144 | def test_has_api_key_true(self, cache_manager): |
| 145 | """Test has_api_key when key is configured.""" |
nothing calls this directly
no test coverage detected