equal
deleted
inserted
replaced
|
1 """ |
|
2 This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only. |
|
3 """ |
|
4 |
|
5 from django.conf.urls.defaults import * |
|
6 from django.contrib.formtools.tests import * |
|
7 |
|
8 urlpatterns = patterns('', |
|
9 (r'^test1/', TestFormPreview(TestForm)), |
|
10 ) |