summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpjenvey <none@none>2006-11-15 19:49:50 -0800
committerpjenvey <none@none>2006-11-15 19:49:50 -0800
commit3f27e9272243a72b437641094128fba6a190d880 (patch)
treee789d5a266e442170674e77f6fec7ad73c1e751e
parent1a4b703029fd9b30c4d210fc578a57f849ddc826 (diff)
downloadroutes-3f27e9272243a72b437641094128fba6a190d880.tar.gz
[svn] added a test for the append_slash fix in r301
--HG-- branch : trunk
-rw-r--r--tests/test_functional/test_utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_functional/test_utils.py b/tests/test_functional/test_utils.py
index ac7e751..1285c2c 100644
--- a/tests/test_functional/test_utils.py
+++ b/tests/test_functional/test_utils.py
@@ -210,6 +210,7 @@ class TestUtils(unittest.TestCase):
self.assertEqual('/delicious.jpg', url_for('/delicious.jpg'))
self.assertEqual('/delicious/search?v=routes', url_for('/delicious/search', v='routes'))
self.assertEqual('/content/list/', url_for(controller='/content', action='list'))
+ self.assertEqual('/content/list/?page=1', url_for(controller='/content', action='list', page='1'))
def test_no_named_path_with_script(self):
m = self.con.mapper