()
| 70 | |
| 71 | |
| 72 | def test_config_dict_missing_keys(): |
| 73 | assert ConfigDict().get('missing_property') is None |
| 74 | |
| 75 | with pytest.raises(KeyError, match="'missing_property'"): |
| 76 | ConfigDict()['missing_property'] |
| 77 | |
| 78 | |
| 79 | class TestsBaseConfig: |
nothing calls this directly
no test coverage detected