app/django/contrib/formtools/test_urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 30 Sep 2008 15:21:05 +0000
changeset 213 75a8cc0200ad
parent 54 03e267d67478
permissions -rw-r--r--
Add key naming function for Sponsor, School, Organization, Club key_names. Patch by: Pawel Solyga Review by: to-be-reviewed

"""

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