summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repoze/bfg/tests/test_urldispatch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/repoze/bfg/tests/test_urldispatch.py b/repoze/bfg/tests/test_urldispatch.py
index bf3ea319a..606bd109b 100644
--- a/repoze/bfg/tests/test_urldispatch.py
+++ b/repoze/bfg/tests/test_urldispatch.py
@@ -194,6 +194,7 @@ class TestCompileRouteMatchFunctional(unittest.TestCase):
'/%2FLa%20Pe%C3%B1a/rest/of/path')
self.generates('*traverse', {'traverse':('a', u'La Pe\xf1a')},
'/a/La%20Pe%C3%B1a')
+ self.generates('/foo/:id.html', {'id':'bar'}, '/foo/bar.html')
class DummyRootFactory(object):
def __init__(self, result):