(self)
| 53 | self.assertEqual(self.ext.getConfigs(), {'foo': 'bar', 'bar': 'baz'}) |
| 54 | |
| 55 | def testGetConfigInfo(self): |
| 56 | self.assertEqual( |
| 57 | dict(self.ext.getConfigInfo()), |
| 58 | dict([ |
| 59 | ('foo', 'Description of foo'), |
| 60 | ('bar', 'Description of bar') |
| 61 | ]) |
| 62 | ) |
| 63 | |
| 64 | def testSetConfig(self): |
| 65 | self.ext.setConfig('foo', 'baz') |
nothing calls this directly
no test coverage detected