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


Python TemplateSpec.template_encoding方法代码示例

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


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

示例1: test_load__template__with_template_encoding

# 需要导入模块: from pystache import TemplateSpec [as 别名]
# 或者: from pystache.TemplateSpec import template_encoding [as 别名]
    def test_load__template__with_template_encoding(self):
        """
        Test the template attribute: with template encoding attribute.

        """
        custom = TemplateSpec()
        custom.template_encoding = 'ascii'
        custom.template = 'é'.encode('utf-8')

        spec_loader = self._make_specloader()

        self.assertRaises(UnicodeDecodeError, self._assert_template, spec_loader, custom, 'é')

        custom.template_encoding = 'utf-8'
        self._assert_template(spec_loader, custom, 'é')
开发者ID:GaloisInc,项目名称:echronos,代码行数:17,代码来源:test_specloader.py

示例2: test_load__template__correct_loader

# 需要导入模块: from pystache import TemplateSpec [as 别名]
# 或者: from pystache.TemplateSpec import template_encoding [as 别名]
    def test_load__template__correct_loader(self):
        """
        Test that reader.unicode() is called correctly.

        This test tests that the correct reader is called with the correct
        arguments.  This is a catch-all test to supplement the other
        test cases.  It tests SpecLoader.load() independent of reader.unicode()
        being implemented correctly (and tested).

        """
        class MockLoader(Loader):

            def __init__(self):
                self.s = None
                self.encoding = None

            # Overrides the existing method.
            def unicode(self, s, encoding=None):
                self.s = s
                self.encoding = encoding
                return u"foo"

        loader = MockLoader()
        custom_loader = SpecLoader()
        custom_loader.loader = loader

        view = TemplateSpec()
        view.template = "template-foo"
        view.template_encoding = "encoding-foo"

        # Check that our unicode() above was called.
        self._assert_template(custom_loader, view, u'foo')
        self.assertEqual(loader.s, "template-foo")
        self.assertEqual(loader.encoding, "encoding-foo")
开发者ID:tobiasandtobias,项目名称:pystache,代码行数:36,代码来源:test_specloader.py

示例3: test_load__template__with_template_encoding

# 需要导入模块: from pystache import TemplateSpec [as 别名]
# 或者: from pystache.TemplateSpec import template_encoding [as 别名]
    def test_load__template__with_template_encoding(self):
        """
        Test the template attribute: with template encoding attribute.

        """
        custom = TemplateSpec()
        custom.template = u'é'.encode('utf-8')

        self.assertRaises(UnicodeDecodeError, self._assert_template, SpecLoader(), custom, u'é')

        custom.template_encoding = 'utf-8'
        self._assert_template(SpecLoader(), custom, u'é')
开发者ID:clach04,项目名称:pystache,代码行数:14,代码来源:test_template_spec.py


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