summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_framework/urls')
-rw-r--r--tests/check_framework/urls/contains_tuple.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/check_framework/urls/contains_tuple.py b/tests/check_framework/urls/contains_tuple.py
new file mode 100644
index 0000000000..56aa3ea364
--- /dev/null
+++ b/tests/check_framework/urls/contains_tuple.py
@@ -0,0 +1,3 @@
+urlpatterns = [
+ (r'^tuple/$', lambda x: x),
+]