本文整理汇总了Python中pyramid.configuration.Configurator.testing_add_template方法的典型用法代码示例。如果您正苦于以下问题:Python Configurator.testing_add_template方法的具体用法?Python Configurator.testing_add_template怎么用?Python Configurator.testing_add_template使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyramid.configuration.Configurator
的用法示例。
在下文中一共展示了Configurator.testing_add_template方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: registerTemplateRenderer
# 需要导入模块: from pyramid.configuration import Configurator [as 别名]
# 或者: from pyramid.configuration.Configurator import testing_add_template [as 别名]
def registerTemplateRenderer(path, renderer=None):
""" Register a template renderer at ``path`` (usually a relative
filename ala ``templates/foo.pt``) and return the renderer object.
If the ``renderer`` argument is None, a 'dummy' renderer will be
used. This function is useful when testing code that calls the
:func:`pyramid.renderers.render` function or
:func:`pyramid.renderers.render_to_response` function or any
other ``render_*`` or ``get_*`` API of the
:mod:`pyramid.renderers` module.
.. warning:: This API is deprecated as of :app:`Pyramid` 1.0.
Instead use the
:meth:`pyramid.configuration.Configurator.testing_add_template`
method in your unit and integration tests.
"""
registry = get_current_registry()
config = Configurator(registry=registry)
return config.testing_add_template(path, renderer)