summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-12-22 22:38:02 +0000
committerJannis Leidel <jannis@leidel.info>2011-12-22 22:38:02 +0000
commita9a0f0b03f9a02deb03617bf7e9773a307d1328f (patch)
treef4962a7e319b15e8d695814e76d05bd323b079b9 /tests/urls.py
parent98c974c70b4065e649a1d1f0b21062d48bec4bdb (diff)
downloaddjango-a9a0f0b03f9a02deb03617bf7e9773a307d1328f.tar.gz
Fixed #17042 -- Extended startproject and startapp management commands to better handle custom app and project templates. Many thanks to Preston Holmes for his initial patch and Alex Gaynor, Carl Meyer, Donald Stufft, Jacob Kaplan-Moss and Julien Phalip for code reviewing.
* Added ability to pass the project or app directory path as the second argument * Added ``--template`` option for specifying custom project and app templates * Cleaned up admin_scripts tests a little while I was there git-svn-id: http://code.djangoproject.com/svn/django/trunk@17246 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py
index e7c23e5144..4cd603e29f 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -27,4 +27,7 @@ urlpatterns = patterns('',
# admin custom URL tests
(r'^custom_urls/', include('regressiontests.admin_custom_urls.urls')),
+ # admin custom URL tests
+ (r'^admin_scripts/', include('regressiontests.admin_scripts.urls')),
+
)