本文整理汇总了Python中floppyforms.templatetags.floppyforms.FormConfig.push方法的典型用法代码示例。如果您正苦于以下问题:Python FormConfig.push方法的具体用法?Python FormConfig.push怎么用?Python FormConfig.push使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类floppyforms.templatetags.floppyforms.FormConfig
的用法示例。
在下文中一共展示了FormConfig.push方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_stacked_config
# 需要导入模块: from floppyforms.templatetags.floppyforms import FormConfig [as 别名]
# 或者: from floppyforms.templatetags.floppyforms.FormConfig import push [as 别名]
def test_stacked_config(self):
form = RegistrationForm()
config = FormConfig()
config.push()
config.configure(
'widget', widgets.Textarea(),
filter=ConfigFilter("CharField"),
)
config.push()
config.configure(
'widget', widgets.HiddenInput(),
filter=ConfigFilter('short_biography'),
)
widget = config.retrieve('widget', bound_field=form['short_biography'])
self.assertEqual(widget.__class__, widgets.HiddenInput)
config.pop()
widget = config.retrieve('widget', bound_field=form['short_biography'])
self.assertEqual(widget.__class__, widgets.Textarea)
config.pop()
widget = config.retrieve('widget', bound_field=form['short_biography'])
self.assertEqual(widget.__class__, widgets.TextInput)
示例2: test_retrieve_all
# 需要导入模块: from floppyforms.templatetags.floppyforms import FormConfig [as 别名]
# 或者: from floppyforms.templatetags.floppyforms.FormConfig import push [as 别名]
def test_retrieve_all(self):
config = FormConfig()
config.configure('number', 1)
config.configure('number', 2)
self.assertEqual(list(config.retrieve_all('number')), [2, 1])
config.configure('number', 4, filter=lambda nr=None, **kwargs: nr == 'four')
self.assertEqual(list(config.retrieve_all('number')), [2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='four')), [4, 2, 1])
config.push()
config.configure('number', 5, filter=lambda nr=None, **kwargs: nr == 'five')
self.assertEqual(list(config.retrieve_all('number')), [2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='five')), [5, 2, 1])
config.configure('number', -1)
self.assertEqual(list(config.retrieve_all('number')), [-1, 2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='four')), [-1, 4, 2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='five')), [-1, 5, 2, 1])
config.pop()
self.assertEqual(list(config.retrieve_all('number')), [2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='four')), [4, 2, 1])
self.assertEqual(list(config.retrieve_all('number', nr='five')), [2, 1])