(self)
| 80 | self.assertEqual(get_list('not exist'), []) |
| 81 | |
| 82 | def test_load_nothing(self): |
| 83 | parser = config.IdleConfParser('') |
| 84 | parser.Load() |
| 85 | self.assertEqual(parser.sections(), []) |
| 86 | |
| 87 | def test_load_file(self): |
| 88 | # Borrow test/configdata/cfgparser.1 from test_configparser. |
nothing calls this directly
no test coverage detected