Files
deb-python-django-formtools/formtools/tests/urls.py
Claude Paroz a20582ec55 Removed most of absolute_import imports
Should be unneeded with Python 2.7 and up.
Added some unicode_literals along the way.
2013-07-29 20:28:13 +02:00

14 lines
337 B
Python

"""
This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only.
"""
from django.conf.urls import patterns, url
from django.contrib.formtools.tests.tests import TestFormPreview
from django.contrib.formtools.tests.forms import TestForm
urlpatterns = patterns('',
url(r'^preview/', TestFormPreview(TestForm)),
)