diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-06-26 05:13:55 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-06-26 05:13:55 +0000 |
| commit | 67273e4af051dc7c4e42c483eab370c314d28160 (patch) | |
| tree | 1ee2e281575ae4514e75be97867ef8587f50dab2 | |
| parent | a8447a6250dc5f0a2e473e7d3fd2ef20c072c175 (diff) | |
| download | pyramid-67273e4af051dc7c4e42c483eab370c314d28160.tar.gz pyramid-67273e4af051dc7c4e42c483eab370c314d28160.tar.bz2 pyramid-67273e4af051dc7c4e42c483eab370c314d28160.zip | |
Extension test.
| -rw-r--r-- | repoze/bfg/tests/test_urldispatch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/repoze/bfg/tests/test_urldispatch.py b/repoze/bfg/tests/test_urldispatch.py index 0bee548c5..bf3ea319a 100644 --- a/repoze/bfg/tests/test_urldispatch.py +++ b/repoze/bfg/tests/test_urldispatch.py @@ -175,6 +175,7 @@ class TestCompileRouteMatchFunctional(unittest.TestCase): self.matches(':x', '/La%20Pe%C3%B1a', {'x':u'La Pe\xf1a'}) self.matches('*traverse', '/La%20Pe%C3%B1a/x', {'traverse':(u'La Pe\xf1a', 'x')}) + self.matches('/foo/:id.html', '/foo/bar.html', {'id':'bar'}) def test_generator_functional(self): self.generates('', {}, '/') |
