本文整理汇总了Python中programy.config.file.yaml_file.YamlConfigurationFile.get_bool_option方法的典型用法代码示例。如果您正苦于以下问题:Python YamlConfigurationFile.get_bool_option方法的具体用法?Python YamlConfigurationFile.get_bool_option怎么用?Python YamlConfigurationFile.get_bool_option使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类programy.config.file.yaml_file.YamlConfigurationFile
的用法示例。
在下文中一共展示了YamlConfigurationFile.get_bool_option方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_methods
# 需要导入模块: from programy.config.file.yaml_file import YamlConfigurationFile [as 别名]
# 或者: from programy.config.file.yaml_file.YamlConfigurationFile import get_bool_option [as 别名]
def test_get_methods(self):
config_data = YamlConfigurationFile()
self.assertIsNotNone(config_data)
configuration = config_data.load_from_text("""
brain:
# Overrides
overrides:
allow_system_aiml: true
allow_learn_aiml: true
allow_learnf_aiml: true
int_value: 999
""", ConsoleConfiguration(), ".")
self.assertIsNotNone(configuration)
section = config_data.get_section("brainx")
self.assertIsNone(section)
section = config_data.get_section("brain")
self.assertIsNotNone(section)
child_section = config_data.get_section("overrides", section)
self.assertIsNotNone(child_section)
keys = list(config_data.get_child_section_keys("overrides", section))
self.assertIsNotNone(keys)
self.assertEqual(4, len(keys))
self.assertTrue("allow_system_aiml" in keys)
self.assertTrue("allow_learn_aiml" in keys)
self.assertTrue("allow_learnf_aiml" in keys)
self.assertIsNone(config_data.get_child_section_keys("missing", section))
self.assertEqual(True, config_data.get_option(child_section, "allow_system_aiml"))
self.assertEqual(True, config_data.get_option(child_section, "missing", missing_value=True))
self.assertEqual(True, config_data.get_bool_option(child_section, "allow_system_aiml"))
self.assertEqual(False, config_data.get_bool_option(child_section, "other_value"))
self.assertEqual(999, config_data.get_int_option(child_section, "int_value"))
self.assertEqual(0, config_data.get_int_option(child_section, "other_value"))