本文整理汇总了Python中simple_virtuoso_migrate.config.Config.remove方法的典型用法代码示例。如果您正苦于以下问题:Python Config.remove方法的具体用法?Python Config.remove怎么用?Python Config.remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simple_virtuoso_migrate.config.Config
的用法示例。
在下文中一共展示了Config.remove方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_it_should_raise_exception_when_removing_an_inexistent_config_value
# 需要导入模块: from simple_virtuoso_migrate.config import Config [as 别名]
# 或者: from simple_virtuoso_migrate.config.Config import remove [as 别名]
def test_it_should_raise_exception_when_removing_an_inexistent_config_value(self):
config = Config()
config.put("some_key", "some_value")
try:
config.remove("ANOTHER_KEY")
except Exception, e:
self.assertEqual("invalid configuration key ('another_key')", str(e))
示例2: test_it_should_transform_keys_to_lower_case
# 需要导入模块: from simple_virtuoso_migrate.config import Config [as 别名]
# 或者: from simple_virtuoso_migrate.config.Config import remove [as 别名]
def test_it_should_transform_keys_to_lower_case(self):
config = Config()
config.put("sOmE_kEy", "original_value")
self.assertEqual("original_value", config.get("SoMe_KeY"))
config.update("sOMe_kEy", "new_value")
self.assertEqual("new_value", config.get("some_KEY"))
config.remove("SOME_KEY")
self.assertRaises(Exception, config.get, "sOMe_KEY")
示例3: test_it_should_remove_saved_config_values
# 需要导入模块: from simple_virtuoso_migrate.config import Config [as 别名]
# 或者: from simple_virtuoso_migrate.config.Config import remove [as 别名]
def test_it_should_remove_saved_config_values(self):
config = Config()
config.put("some_key", "some_value")
initial = str(config)
config.remove("some_key")
self.assertNotEqual(initial, str(config))