(self)
| 332 | eq(_warn.call_count, 4) |
| 333 | |
| 334 | def test_set_option(self): |
| 335 | conf = self.mock_config() |
| 336 | |
| 337 | conf.SetOption('main', 'Foo', 'bar', 'newbar') |
| 338 | self.assertEqual(conf.GetOption('main', 'Foo', 'bar'), 'newbar') |
| 339 | |
| 340 | def test_get_section_list(self): |
| 341 | conf = self.mock_config() |
nothing calls this directly
no test coverage detected