Files
deb-python-django-formtools/tests/urls.py
2016-05-28 13:20:29 -04:00

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