Michael Merickel
2018-10-15 0c29cf2df41600d3906d521c72991c7686018b71
tests/pkgs/includeapp1/three.py
@@ -1,10 +1,11 @@
from pyramid.response import Response
def aview(request):
    return Response('three')
def configure(config):
    config.add_view(aview, name='three')
    config.include('tests.pkgs.includeapp1.two.configure') # should not cycle
    config.add_view(aview) # will be overridden by root when resolved
    config.include('tests.pkgs.includeapp1.two.configure')  # should not cycle
    config.add_view(aview)  # will be overridden by root when resolved