示例#1
0
 def test_flag_set_with_text_but_not_true(self):
     """
     flag_set() returns False if the setting is present but
     not equal to 'true'.
     """
     self.prepare_config("c", {"x": "blah"})
     self.assertFalse(config.flag_set("c", "x"))
示例#2
0
 def test_flag_set_with_text_but_not_true(self):
     """
     flag_set() returns False if the setting is present but
     not equal to 'true'.
     """
     self.prepare_config("c", {"x": "blah"})
     self.assertFalse(config.flag_set("c", "x"))
示例#3
0
 def test_flag_set_with_True(self):
     """
     flag_set() returns True if the setting is present and equal to 'true'.
     """
     self.prepare_config("e", {"v": " True 	 "})
     self.assertTrue(config.flag_set("e", "v"))
示例#4
0
 def test_flag_set_with_number(self):
     # flag_set() returns False if the setting is present but
     # not equal to 'true'
     self.prepare_config("b", {"y": "123"})
     self.assertFalse(config.flag_set("b", "y"))
示例#5
0
 def test_flag_set_with_absent_key(self):
     # flag_set() returns False if the setting
     # is not present in the configuration file.
     self.prepare_config("a")
     self.assertFalse(config.flag_set("a", "z"))
示例#6
0
 def test_flag_set_with_True(self):
     """
     flag_set() returns True if the setting is present and equal to 'true'.
     """
     self.prepare_config("e", {"v": " True 	 "})
     self.assertTrue(config.flag_set("e", "v"))
示例#7
0
 def test_flag_set_with_number(self):
     # flag_set() returns False if the setting is present but
     # not equal to 'true'
     self.prepare_config("b", {"y": "123"})
     self.assertFalse(config.flag_set("b", "y"))
示例#8
0
 def test_flag_set_with_absent_key(self):
     # flag_set() returns False if the setting
     # is not present in the configuration file.
     self.prepare_config("a")
     self.assertFalse(config.flag_set("a", "z"))
示例#9
0
 def test_flag_set_with_true(self):
     # flag_set() returns True if the setting is present and equal to True
     self.prepare_config("d", {"w": "true"})
     self.assertTrue(config.flag_set("d", "w"))