(self)
| 96 | config.get_verbosity("--- NOT A VERBOSITY LEVEL ---") |
| 97 | |
| 98 | def test_getini_unsupported_error(self): |
| 99 | config = mock_config() |
| 100 | |
| 101 | with pytest.raises(KeyError, match="Not mocked out: --- NOT AN INI ---"): |
| 102 | config.getini("--- NOT AN INI ---") |
| 103 | |
| 104 | |
| 105 | class TestImportHookInstallation: |
nothing calls this directly
no test coverage detected