1
0
mirror of https://github.com/django/django.git synced 2025-05-16 20:06:29 +00:00
Jannis Leidel a9a0f0b03f 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
2011-12-22 22:38:02 +00:00

28 lines
1.0 KiB
Python

"""
Tests for django.utils.
"""
from __future__ import absolute_import
from .dateformat import DateFormatTests
from .feedgenerator import FeedgeneratorTest
from .module_loading import DefaultLoader, EggLoader, CustomLoader
from .termcolors import TermColorTests
from .html import TestUtilsHtml
from .http import TestUtilsHttp
from .checksums import TestUtilsChecksums
from .text import TestUtilsText
from .simplelazyobject import TestUtilsSimpleLazyObject
from .decorators import DecoratorFromMiddlewareTests
from .functional import FunctionalTestCase
from .timesince import TimesinceTests
from .datastructures import (MultiValueDictTests, SortedDictTests,
DictWrapperTests, ImmutableListTests, DotExpandedDictTests, MergeDictTests)
from .tzinfo import TzinfoTests
from .datetime_safe import DatetimeTests
from .baseconv import TestBaseConv
from .jslex import JsTokensTest, JsToCForGettextTest
from .ipv6 import TestUtilsIPv6
from .timezone import TimezoneTests
from .archive import TestZip, TestTar, TestGzipTar, TestBzip2Tar