app/django/contrib/formtools/test_urls.py
author James Levy <jamesalexanderlevy@gmail.com>
Sun, 28 Jun 2009 14:46:31 +0200
changeset 2435 dd16e9b3c2d0
parent 54 03e267d67478
permissions -rw-r--r--
Added View for Surveys. Patch by: James Levy, Daniel Diniz Reviewed 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)),
                      )