Ticket #5441: test_urls.py

File test_urls.py, 291 bytes (added by simeon, 17 years ago)

Url file to be used only by unit tests. See comments

Line 
1"""
2
3This is a urlconf to be loaded by tests.py. Add any urls needed
4for tests only.
5
6"""
7from django.conf.urls.defaults import *
8from django.contrib.formtools.tests import *
9
10urlpatterns = patterns('',
11 (r'^test1/', TestFormPreview(TestForm)),
12 )
Back to Top