summaryrefslogtreecommitdiff
path: root/tests/admin_docs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_docs')
-rw-r--r--tests/admin_docs/test_views.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/admin_docs/test_views.py b/tests/admin_docs/test_views.py
index 085b821a37..73426a3f8f 100644
--- a/tests/admin_docs/test_views.py
+++ b/tests/admin_docs/test_views.py
@@ -385,7 +385,7 @@ class AdminDocViewFunctionsTests(SimpleTestCase):
def test_simplify_regex(self):
tests = (
- (r'^a', '/a'),
+ # Named and unnamed groups.
(r'^(?P<a>\w+)/b/(?P<c>\w+)/$', '/<a>/b/<c>/'),
(r'^(?P<a>\w+)/b/(?P<c>\w+)$', '/<a>/b/<c>'),
(r'^(?P<a>\w+)/b/(?P<c>\w+)', '/<a>/b/<c>'),
@@ -397,6 +397,17 @@ class AdminDocViewFunctionsTests(SimpleTestCase):
(r'^(?P<a>(x|y))/b/(?P<c>\w+)', '/<a>/b/<c>'),
(r'^(?P<a>(x|y))/b/(?P<c>\w+)ab', '/<a>/b/<c>ab'),
(r'^(?P<a>(x|y)(\(|\)))/b/(?P<c>\w+)ab', '/<a>/b/<c>ab'),
+ # Single and repeated metacharacters.
+ (r'^a', '/a'),
+ (r'^^a', '/a'),
+ (r'^^^a', '/a'),
+ (r'a$', '/a'),
+ (r'a$$', '/a'),
+ (r'a$$$', '/a'),
+ (r'a?', '/a'),
+ (r'a??', '/a'),
+ (r'a???', '/a'),
+ # Multiple mixed metacharacters.
(r'^a/?$', '/a/'),
)
for pattern, output in tests: