本文整理汇总了Python中indico.core.settings.SettingsProxy.set_multi方法的典型用法代码示例。如果您正苦于以下问题:Python SettingsProxy.set_multi方法的具体用法?Python SettingsProxy.set_multi怎么用?Python SettingsProxy.set_multi使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类indico.core.settings.SettingsProxy
的用法示例。
在下文中一共展示了SettingsProxy.set_multi方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_set_multi_propagate
# 需要导入模块: from indico.core.settings import SettingsProxy [as 别名]
# 或者: from indico.core.settings.SettingsProxy import set_multi [as 别名]
def test_set_multi_propagate(mocker):
Setting = mocker.patch('indico.core.settings.core.Setting')
SettingPrincipal = mocker.patch('indico.core.settings.core.SettingPrincipal')
proxy = SettingsProxy('foo', {'reg': None}, acls={'acl'})
proxy.set_multi({
'reg': 'bar',
'acl': {'u'}
})
Setting.set_multi.assert_called_once_with('foo', {'reg': 'bar'})
SettingPrincipal.set_acl_multi.assert_called_with('foo', {'acl': {'u'}})
示例2: test_proxy_converters_all
# 需要导入模块: from indico.core.settings import SettingsProxy [as 别名]
# 或者: from indico.core.settings.SettingsProxy import set_multi [as 别名]
def test_proxy_converters_all():
epoch_dt = datetime(1970, 1, 1, tzinfo=pytz.utc)
xmas_dt = datetime(2016, 12, 24, 20, tzinfo=pytz.utc)
newyear_dt = datetime(2017, 1, 2, tzinfo=pytz.utc)
duration = timedelta(days=2)
defaults = {'epoch': epoch_dt, 'xmas': None, 'newyear': None, 'duration': None}
converters = {name: DatetimeConverter if name != 'duration' else TimedeltaConverter for name in defaults}
proxy = SettingsProxy('test', defaults, converters=converters)
proxy.set('xmas', xmas_dt)
proxy.set_multi({'newyear': newyear_dt, 'duration': duration})
assert proxy.get_all() == {'epoch': epoch_dt, 'xmas': xmas_dt, 'newyear': newyear_dt, 'duration': duration}