summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-12 12:58:24 -0400
committerChris McDonough <chrism@plope.com>2011-04-12 12:58:24 -0400
commit74f9ae53e204ed0afa3da1a4ef4d8c96373fdef2 (patch)
tree506a153ce7e093704c00efbcb0ca268b6e19c81f
parent216f4161faaa7535bc074c5e59405c3cc701c185 (diff)
downloadpyramid-74f9ae53e204ed0afa3da1a4ef4d8c96373fdef2.tar.gz
pyramid-74f9ae53e204ed0afa3da1a4ef4d8c96373fdef2.tar.bz2
pyramid-74f9ae53e204ed0afa3da1a4ef4d8c96373fdef2.zip
extend test
-rw-r--r--pyramid/tests/test_router.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyramid/tests/test_router.py b/pyramid/tests/test_router.py
index bd6210f75..ffda14738 100644
--- a/pyramid/tests/test_router.py
+++ b/pyramid/tests/test_router.py
@@ -115,6 +115,8 @@ class TestRouter(unittest.TestCase):
def test_ctor_registry_has_no_settings(self):
self.registry.settings = None
router = self._makeOne()
+ self.assertEqual(router.debug_notfound, False)
+ self.assertEqual(router.debug_routematch, False)
self.failIf('debug_notfound' in router.__dict__)
self.failIf('debug_routematch' in router.__dict__)