本文整理匯總了Python中galicaster.core.conf.Conf.get_lower方法的典型用法代碼示例。如果您正苦於以下問題:Python Conf.get_lower方法的具體用法?Python Conf.get_lower怎麽用?Python Conf.get_lower使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類galicaster.core.conf.Conf
的用法示例。
在下文中一共展示了Conf.get_lower方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_get_lower
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_lower [as 別名]
def test_get_lower(self):
conf = Conf()
for lower in ['RUBENRUA', 'RubenRua', 'RubenruA', 'rubenrua']:
conf.set('s', 'k', lower)
self.assertEqual(conf.get_lower('s', 'k'), 'rubenrua')
self.assertEqual(conf.get_lower('s', 'k_not_exists'), None)
示例2: test_get_boolean_int_lower
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_lower [as 別名]
def test_get_boolean_int_lower(self):
conf = Conf()
for yes in ['True', 'true', 'yes', 'si', 'y', 'OK', 'Y', 'TRUE']:
conf.set('s', 'k', yes)
self.assertTrue(conf.get_boolean('s', 'k'), 'Check if {0} is True'.format(yes))
for no in ['None', 'not', 'False', 'no', 'n']:
conf.set('s', 'k', no)
self.assertFalse(conf.get_boolean('s', 'k'), 'Check if {0} is False'.format(no))
for lower in ['RUBENRUA', 'RubenRua', 'RubenruA', 'rubenrua']:
conf.set('s', 'k', lower)
self.assertEqual(conf.get_lower('s', 'k'), 'rubenrua')
self.assertEqual(conf.get_lower('s', 'k_not_exists'), None)
conf.set('s', 'k', '10')
self.assertEqual(conf.get_int('s', 'k'), 10)
示例3: test_get_boolean_int_lower
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_lower [as 別名]
def test_get_boolean_int_lower(self):
conf = Conf()
for yes in ["True", "true", "yes", "si", "y", "OK", "Y", "TRUE"]:
conf.set("s", "k", yes)
self.assertTrue(conf.get_boolean("s", "k"), "Check if {0} is True".format(yes))
for no in ["None", "not", "False", "no", "n"]:
conf.set("s", "k", no)
self.assertFalse(conf.get_boolean("s", "k"), "Check if {0} is False".format(no))
for lower in ["RUBENRUA", "RubenRua", "RubenruA", "rubenrua"]:
conf.set("s", "k", lower)
self.assertEqual(conf.get_lower("s", "k"), "rubenrua")
self.assertEqual(conf.get_lower("s", "k_not_exists"), None)
conf.set("s", "k", "10")
self.assertEqual(conf.get_int("s", "k"), 10)
示例4: TestFunctions
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_lower [as 別名]
#.........這裏部分代碼省略.........
self.assertEqual(profile.name, 'New Profile')
profile = Profile('test')
self.assertEqual(profile.name, 'test')
def test_add_track_to_profile(self):
profile = Profile()
self.assertEqual(0, len(profile.tracks))
t1 = profile.new_track({})
self.assertEqual(1, len(profile.tracks))
t2 = Track()
profile.add_track(t2)
self.assertEqual(2, len(profile.tracks))
profile.remove_track(t2)
self.assertEqual(1, len(profile.tracks))
def test_get_boolean(self):
for yes in ['True', 'true', 'yes', 'si', 'y', 'OK', 'Y', 'TRUE']:
self.conf.set('s', 'k', yes)
self.assertTrue(self.conf.get_boolean('s', 'k'), 'Check if {0} is True'.format(yes))
for no in ['None', 'not', 'False', 'no', 'n']:
self.conf.set('s', 'k', no)
self.assertFalse(self.conf.get_boolean('s', 'k'), 'Check if {0} is False'.format(no))
self.conf.set('s', 'k', 1)
self.assertFalse(self.conf.get_boolean('s', 'k', False))
def test_get_lower(self):
for lower in ['RUBENRUA', 'RubenRua', 'RubenruA', 'rubenrua']:
self.conf.set('s', 'k', lower)
self.assertEqual(self.conf.get_lower('s', 'k'), 'rubenrua')
self.assertEqual(self.conf.get_lower('s', 'k_not_exists', None), None)
self.conf.set('s', 'k', 'TEST')
self.assertEqual(self.conf.get_lower('s', 'k'), 'test')
self.conf.set('s', 'k2', 1234)
self.assertEqual(self.conf.get_lower('s', 'k2', 'testing'), 'testing')
def test_get_int(self):
self.conf.set('s', 'k', '10')
self.assertEqual(self.conf.get_int('s', 'k'), 10)
self.conf.set('s', 'k2', 'test')
self.assertEqual(self.conf.get_int('s', 'k2', 20), 20)
def test_get_hour(self):
self.conf.set('s', 'k', '12:34')
self.assertEqual(self.conf.get_hour('s', 'k'), '12:34')
self.conf.set('s', 'k2', 'test')
self.assertEqual(self.conf.get_hour('s', 'k2', '11:11'), '11:11')
def test_get_list(self):
self.assertEqual(self.conf.get_list('s', 'k'), [])