Files
deb-python-django-compressor/compressor/tests/__init__.py
Mathieu Pillard 2633b62e17 Add tests regarding the use of {% static %} in django-1.4 and compressor
Conflicts:

	compressor/tests/__init__.py
2012-03-18 00:32:19 +01:00

24 lines
1.2 KiB
Python

from compressor.tests.base import (CompressorTestCase, CssMediaTestCase,
VerboseTestCase, CacheBackendTestCase)
from compressor.tests.filters import (CssTidyTestCase, PrecompilerTestCase,
CssMinTestCase, CssAbsolutizingTestCase, CssAbsolutizingTestCaseWithHash,
CssDataUriTestCase, TemplateTestCase)
from compressor.tests.jinja2ext import TestJinja2CompressorExtension
from compressor.tests.offline import (
OfflineGenerationBlockSuperTestCase,
OfflineGenerationBlockSuperTestCaseWithExtraContent,
OfflineGenerationBlockSuperMultipleTestCase,
OfflineGenerationConditionTestCase,
OfflineGenerationTemplateTagTestCase,
OfflineGenerationStaticTemplateTagTestCase,
OfflineGenerationTestCaseWithContext,
OfflineGenerationTestCaseErrors,
OfflineGenerationTestCase,
OfflineGenerationTestCaseWithError)
from compressor.tests.parsers import (LxmlParserTests, Html5LibParserTests,
BeautifulSoupParserTests, HtmlParserTests)
from compressor.tests.signals import PostCompressSignalTestCase
from compressor.tests.storages import StorageTestCase
from compressor.tests.templatetags import (TemplatetagTestCase,
PrecompilerTemplatetagTestCase)