14 lines
505 B
Python
14 lines
505 B
Python
|
"""
|
||
|
This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only.
|
||
|
"""
|
||
|
|
||
|
from django.conf.urls.defaults import *
|
||
|
from django.contrib.formtools.tests import *
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^test1/', TestFormPreview(TestForm)),
|
||
|
(r'^wizard/$', WizardClass([WizardPageOneForm,
|
||
|
WizardPageTwoForm,
|
||
|
WizardPageThreeForm])),
|
||
|
)
|