app/django/contrib/formtools/test_urls.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Mon, 25 May 2009 20:42:11 +0200
changeset 2343 5a4cfa148b7d
parent 54 03e267d67478
permissions -rw-r--r--
Revert "Add a supplemantal block to the edit form" This reverts commit f50455c4cdcb.

"""

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