Package django :: Package contrib :: Package formtools :: Module test_urls
[hide private]
[frames] | no frames]

Source Code for Module django.contrib.formtools.test_urls

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