summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/formtools/test_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/formtools/test_urls.py')
-rw-r--r--webapp/django/contrib/formtools/test_urls.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/webapp/django/contrib/formtools/test_urls.py b/webapp/django/contrib/formtools/test_urls.py
new file mode 100644
index 0000000000..19dbbd1ae4
--- /dev/null
+++ b/webapp/django/contrib/formtools/test_urls.py
@@ -0,0 +1,12 @@
+"""
+
+This is a urlconf to be loaded by tests.py. Add any urls needed
+for tests only.
+
+"""
+from django.conf.urls.defaults import *
+from django.contrib.formtools.tests import *
+
+urlpatterns = patterns('',
+ (r'^test1/', TestFormPreview(TestForm)),
+ )