Files
deb-python-django-formtools/tests/urls.py
2014-10-05 22:04:10 +02:00

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