Skip to content

Commit

Permalink
Renamed the example_project to test_project
Browse files Browse the repository at this point in the history
  • Loading branch information
bkonkle committed Sep 15, 2010
1 parent a35638b commit a0ff715
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion baseviews/tests.py
Expand Up @@ -2,7 +2,7 @@
from django.test import TestCase, Client


if settings.ROOT_URLCONF == 'example_project.urls':
if settings.ROOT_URLCONF == 'test_project.urls':
# Only test against the example project

class BaseviewTests(TestCase):
Expand Down
7 changes: 0 additions & 7 deletions example_project/urls.py

This file was deleted.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion example_project/settings.py → test_project/settings.py
Expand Up @@ -74,7 +74,7 @@
'django.middleware.common.CommonMiddleware',
)

ROOT_URLCONF = 'example_project.urls'
ROOT_URLCONF = 'test_project.urls'

TEMPLATE_DIRS = (
os.path.join(BASE, 'templates'),
Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions test_project/urls.py
@@ -0,0 +1,5 @@
from django.conf.urls.defaults import *

urlpatterns = patterns('',
url(r'^lol/$', 'test_project.views.LolHomeView'),
)
File renamed without changes.

0 comments on commit a0ff715

Please sign in to comment.