app/django/contrib/formtools/test_urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 14 Jul 2009 18:36:16 +0200
changeset 2648 c6d1c9ccef4a
parent 54 03e267d67478
permissions -rw-r--r--
Added button to the GradingRecords overview to send mail when updating projects. Note that this will mail all the projects for which a record is available.

"""

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