django1/django/contrib/formtools/tests/urls.py

14 lines
316 B
Python
Raw Normal View History

"""
This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only.
"""
from django.conf.urls import url
from django.contrib.formtools.tests.tests import TestFormPreview
2012-12-25 05:55:11 +08:00
from django.contrib.formtools.tests.forms import TestForm
urlpatterns = [
url(r'^preview/', TestFormPreview(TestForm)),
]