mirror of
https://github.com/django/django.git
synced 2025-10-06 00:30:37 +00:00

Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
15 lines
377 B
Python
15 lines
377 B
Python
"""
|
|
This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
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)),
|
|
)
|