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


Python App.mounted方法代码示例

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


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

示例1: test_notfound

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_notfound():
    config = setup()
    app = App(testing_config=config)
    config.commit()

    response = publish(app.request(get_environ(path='')), app.mounted())
    assert response.status == '404 NOT FOUND'
开发者ID:iapilgrim,项目名称:morepath,代码行数:9,代码来源:test_publish.py

示例2: test_notfound

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_notfound():
    app = App()

    c = setup()
    c.configurable(app)
    c.commit()

    response = publish(app.request(get_environ(path='')), app.mounted())
    assert response.status == '404 NOT FOUND'
开发者ID:webmaven,项目名称:morepath,代码行数:11,代码来源:test_publish.py

示例3: test_notfound

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_notfound():
    config = setup()
    app = App(testing_config=config)
    config.commit()

    request = app.request(get_environ(path=''))
    request.mounts.append(app.mounted())

    with pytest.raises(HTTPNotFound):
        publish(request)
开发者ID:fudomunro,项目名称:morepath,代码行数:12,代码来源:test_publish.py

示例4: test_view_raises_http_error

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_view_raises_http_error():
    config = setup()
    app = App(testing_config=config)
    config.commit()

    from werkzeug.exceptions import BadRequest
    def view(self, request):
        raise BadRequest()

    register_path(app, Model, 'foo', None, None, None, Model)
    register_view(app, Model, view)

    response = publish(app.request(get_environ(path='foo')), app.mounted())

    assert response.status == '400 BAD REQUEST'
开发者ID:iapilgrim,项目名称:morepath,代码行数:17,代码来源:test_publish.py

示例5: test_view_raises_http_error

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_view_raises_http_error():
    config = setup()
    app = App(testing_config=config)
    config.commit()

    def view(self, request):
        raise HTTPBadRequest()

    register_path(app, Model, 'foo', None, None, None, None, Model)
    register_view(app, Model, view)

    request = app.request(get_environ(path='foo'))
    request.mounts.append(app.mounted())

    with pytest.raises(HTTPBadRequest):
        publish(request)
开发者ID:fudomunro,项目名称:morepath,代码行数:18,代码来源:test_publish.py

示例6: test_view_raises_http_error

# 需要导入模块: from morepath.app import App [as 别名]
# 或者: from morepath.app.App import mounted [as 别名]
def test_view_raises_http_error():
    app = App()

    c = setup()
    c.configurable(app)
    c.commit()

    from werkzeug.exceptions import BadRequest
    def view(request, model):
        raise BadRequest()

    register_model(app, Model, 'foo', None, Model)
    register_view(app, Model, view)

    response = publish(app.request(get_environ(path='foo')), app.mounted())

    assert response.status == '400 BAD REQUEST'
开发者ID:webmaven,项目名称:morepath,代码行数:19,代码来源:test_publish.py


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