(self, configs, expected)
| 898 | expected_preconfig[key] = expected[key] |
| 899 | |
| 900 | def check_pre_config(self, configs, expected): |
| 901 | pre_config = dict(configs['pre_config']) |
| 902 | for key, value in list(expected.items()): |
| 903 | if value is self.IGNORE_CONFIG: |
| 904 | pre_config.pop(key, None) |
| 905 | del expected[key] |
| 906 | self.assertEqual(pre_config, expected) |
| 907 | |
| 908 | def check_config(self, configs, expected): |
| 909 | config = dict(configs['config']) |
no test coverage detected