app/django/contrib/formtools/test_urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 04 Jul 2009 12:07:27 +0200
changeset 2525 7df431ddcfd3
parent 54 03e267d67478
permissions -rw-r--r--
Remove public role type from SURVEY_TAKING_ACCESS in Survey model.

"""

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)),
                      )