Skip to content

Commit

Permalink
Test urls fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Nov 24, 2009
1 parent 1d73beb commit ae8d7af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion django_app_template/testsettings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = '/tmp/django.db'
INSTALLED_APPS = ['django_app_template']
ROOT_URLCONF = ['django_app_template.urls']
ROOT_URLCONF = 'django_app_template.testurls'
6 changes: 6 additions & 0 deletions django_app_template/testurls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.conf.urls.defaults import *

urlpatterns = patterns('',
(r'^django_app_template/', include('django_app_template.urls')),
)

0 comments on commit ae8d7af

Please sign in to comment.