summaryrefslogtreecommitdiff
path: root/tests/regressiontests/cache/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/cache/urls.py')
-rw-r--r--tests/regressiontests/cache/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/regressiontests/cache/urls.py b/tests/regressiontests/cache/urls.py
new file mode 100644
index 0000000000..b98447bfa3
--- /dev/null
+++ b/tests/regressiontests/cache/urls.py
@@ -0,0 +1,5 @@
+from django.conf.urls.defaults import patterns
+
+urlpatterns = patterns('regressiontests.cache.views',
+ (r'^$', 'home'),
+)