The unit testing was for commands was split out from src/objects/tests.py into the new src/commands/default/test.py in order to keep the testing modules thematically grouped with the things they are testing.
10 lines
199 B
Python
10 lines
199 B
Python
"""
|
|
This structures the (simple) structure of the
|
|
webpage 'application'.
|
|
"""
|
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('src.web.website.views',
|
|
(r'^$', 'page_index'),
|
|
)
|