summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-07 21:45:19 -0500
committerChris McDonough <chrism@plope.com>2010-12-07 21:45:19 -0500
commit6c436f0dca26f8b25456aeaca8c1daa6bef2e84e (patch)
tree15e006e2b85afda0c01f393a9763daa3c365c170
parent446967a9e2f682ca523cbcaa1e8ac4b009331ec5 (diff)
downloadpyramid-6c436f0dca26f8b25456aeaca8c1daa6bef2e84e.tar.gz
pyramid-6c436f0dca26f8b25456aeaca8c1daa6bef2e84e.tar.bz2
pyramid-6c436f0dca26f8b25456aeaca8c1daa6bef2e84e.zip
make integration test check for non-cycling
-rw-r--r--pyramid/tests/includeapp1/three.py1
1 files changed, 1 insertions, 0 deletions
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