Test getting config file path.
(self, cache_manager)
| 102 | """Test configuration management methods.""" |
| 103 | |
| 104 | def test_get_config_path(self, cache_manager): |
| 105 | """Test getting config file path.""" |
| 106 | config_path = cache_manager.get_config_path() |
| 107 | assert config_path == cache_manager.config_dir / "config.json" |
| 108 | |
| 109 | def test_get_config_empty(self, cache_manager): |
| 110 | """Test getting config when file doesn't exist.""" |
nothing calls this directly
no test coverage detected