24 lines
1.2 KiB
Python
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)
|