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

14 lines
316 B
Python

"""
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
from django.contrib.formtools.tests.forms import TestForm
urlpatterns = [
url(r'^preview/', TestFormPreview(TestForm)),
]