From 6c436f0dca26f8b25456aeaca8c1daa6bef2e84e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 7 Dec 2010 21:45:19 -0500 Subject: make integration test check for non-cycling --- pyramid/tests/includeapp1/three.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyramid/tests/includeapp1/three.py b/pyramid/tests/includeapp1/three.py index a921bcd10..de7268bb6 100644 --- a/pyramid/tests/includeapp1/three.py +++ b/pyramid/tests/includeapp1/three.py @@ -5,5 +5,6 @@ def aview(request): def configure(config): config.add_view(aview, name='three') + config.include('pyramid.tests.includeapp1.two.configure') # should not cycle config.add_view(aview) # will be overridden by root when resolved -- cgit v1.2.3