()
| 663 | |
| 664 | |
| 665 | def test_config_wrapper_get_item(): |
| 666 | config_wrapper = ConfigWrapper(config=ConfigDict(title='test')) |
| 667 | |
| 668 | assert config_wrapper.title == 'test' |
| 669 | with pytest.raises(AttributeError, match="Config has no attribute 'test'"): |
| 670 | config_wrapper.test |
| 671 | |
| 672 | |
| 673 | def test_config_inheritance_with_annotations(): |
nothing calls this directly
no test coverage detected