1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Fix #20022: Correctly handle prefixes with url-unsafe characters in reverse().

This commit is contained in:
Baptiste Mispelon
2013-03-13 18:19:29 +01:00
parent 5d8342f321
commit 4fa7f3cdd9
2 changed files with 6 additions and 1 deletions

View File

@@ -183,6 +183,11 @@ class URLPatternReverse(TestCase):
self.assertEqual('/bump%2520map/includes/non_path_include/',
reverse('non_path_include', prefix='/bump%20map/'))
def test_non_urlsafe_prefix_with_args(self):
# Regression for #20022
self.assertEqual('/%7Eme/places/1/',
reverse('places', args=[1], prefix='/~me/'))
class ResolverTests(unittest.TestCase):
def test_resolver_repr(self):
"""