18 lines
826 B
Python
18 lines
826 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'^test2/', UserSecuredFormPreview(TestForm)),
|
||
|
(r'^wizard/$', WizardClass([WizardPageOneForm,
|
||
|
WizardPageTwoForm,
|
||
|
WizardPageThreeForm])),
|
||
|
(r'^wizard2/$', UserSecuredWizardClass([WizardPageOneForm,
|
||
|
WizardPageTwoForm,
|
||
|
WizardPageThreeForm]))
|
||
|
)
|