Ejemplo n.º 1
0
def test_get_default_config():
    ext = Extension()
    config = ext.get_default_config()
    assert '[local-images]' in config
    assert 'enabled = true' in config
Ejemplo n.º 2
0
 def test_get_default_config(self):
     ext = Extension()
     config = ext.get_default_config()
     self.assertIn('[local-images]', config)
     self.assertIn('enabled = true', config)