(self)
| 62 | ) |
| 63 | |
| 64 | def testSetConfig(self): |
| 65 | self.ext.setConfig('foo', 'baz') |
| 66 | self.assertEqual(self.ext.getConfigs(), {'foo': 'baz', 'bar': 'baz'}) |
| 67 | |
| 68 | def testSetConfigWithBadKey(self): |
| 69 | # `self.ext.setConfig('bad', 'baz)` => `KeyError` |
nothing calls this directly
no test coverage detected