本文整理匯總了Python中galicaster.core.conf.Conf.get_current_profile方法的典型用法代碼示例。如果您正苦於以下問題:Python Conf.get_current_profile方法的具體用法?Python Conf.get_current_profile怎麽用?Python Conf.get_current_profile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類galicaster.core.conf.Conf
的用法示例。
在下文中一共展示了Conf.get_current_profile方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_active_tag_default_profile
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_current_profile [as 別名]
def test_active_tag_default_profile(self):
conf_file = get_resource('conf/conf_active.ini')
dist_file = get_resource('conf/conf-dist.ini')
conf = Conf(conf_file, dist_file)
profile = conf.get_current_profile()
self.assertEqual(1, len(profile.tracks))
示例2: test_active_tag_default_profile
# 需要導入模塊: from galicaster.core.conf import Conf [as 別名]
# 或者: from galicaster.core.conf.Conf import get_current_profile [as 別名]
def test_active_tag_default_profile(self):
conf_file = get_resource('conf/conf_active.ini')
backup_conf_active = get_resource('conf/conf_active.backup.ini')
dist_file = get_resource('conf/conf-dist.ini')
shutil.copyfile(conf_file, backup_conf_active)
conf = Conf(conf_file, dist_file)
conf.reload()
profile = conf.get_current_profile()
self.assertEqual(1, len(profile.tracks))
shutil.copyfile(backup_conf_active, conf_file)
os.remove(backup_conf_active)