当前位置: 首页>>代码示例>>Python>>正文


Python Context.get_values方法代码示例

本文整理汇总了Python中binding.Context.get_values方法的典型用法代码示例。如果您正苦于以下问题:Python Context.get_values方法的具体用法?Python Context.get_values怎么用?Python Context.get_values使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在binding.Context的用法示例。


在下文中一共展示了Context.get_values方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_test_content_templating

# 需要导入模块: from binding import Context [as 别名]
# 或者: from binding.Context import get_values [as 别名]
    def test_test_content_templating(self):
        test = Test()
        handler = ContentHandler()
        handler.is_template_content = True
        handler.content = '{"first_name": "Gaius","id": "$id","last_name": "Baltar","login": "$login"}'
        context = Context()
        context.bind_variables({'id': 9, 'login': 'kvothe'})
        test.set_body(handler)

        templated = test.realize(context=context)
        self.assertEqual(string.Template(handler.content).safe_substitute(context.get_values()),
                         templated.body)
开发者ID:pbkhrv,项目名称:pyresttest,代码行数:14,代码来源:test_tests.py

示例2: test_variables

# 需要导入模块: from binding import Context [as 别名]
# 或者: from binding.Context import get_values [as 别名]
    def test_variables(self):
        """ Test bind/return of variables """

        context = Context()
        self.assertTrue(context.get_value('foo') is None)
        self.assertEqual(0, context.mod_count)

        context.bind_variable('foo','bar')
        self.assertEqual('bar', context.get_value('foo'))
        self.assertEqual('bar', context.get_values()['foo'])
        self.assertEqual(1, context.mod_count)

        context.bind_variable('foo','bar2')
        self.assertEqual('bar2', context.get_value('foo'))
        self.assertEqual(2, context.mod_count)
开发者ID:LGordon2,项目名称:pyresttest,代码行数:17,代码来源:test_binding.py


注:本文中的binding.Context.get_values方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。