(self)
| 313 | eq(conf.userCfg['foo'].GetOptionList('Foo Bar'), ['foo']) |
| 314 | |
| 315 | def test_save_user_cfg_files(self): |
| 316 | conf = self.mock_config() |
| 317 | |
| 318 | with mock.patch('idlelib.config.IdleUserConfParser.Save') as m: |
| 319 | conf.SaveUserCfgFiles() |
| 320 | self.assertEqual(m.call_count, len(conf.userCfg)) |
| 321 | |
| 322 | def test_get_option(self): |
| 323 | conf = self.mock_config() |
nothing calls this directly
no test coverage detected