--
Ticket URL: <https://code.djangoproject.com/ticket/24982>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* owner: nobody => MoritzS
* status: new => assigned
--
Ticket URL: <https://code.djangoproject.com/ticket/24982#comment:1>
* needs_better_patch: 1 => 0
Comment:
Added PR.
The tests are now structured as follows:
`cases.py`:
{{{
class BaseStaticFilesTestCase
class StaticFilesTestCase
class BaseCollectionTestCase
class CollectionTestCase
class TestDefaults
class TestNoFilesCreated
def hashed_file_path
class TestHashedFiles
class FinderTestCase
}}}
`settings.py`:
{{{
TEST_ROOT
TESTFILES_PATH
TEST_SETTINGS
}}}
`test_finders.py`:
{{{
class TestFileSystemFinder
class TestAppDirectoriesFinder
class TestDefaultStorageFinder
class TestMiscFinder
}}}
`test_management.py`:
{{{
class TestFindStatic
class TestConfiguration
class TestCollection
class TestCollectionClear
class TestCollectionExcludeNoDefaultIgnore
class TestCollectionDryRun
class TestCollectionFilesOverride
class TestCollectionOverwriteWarning
class TestCollectionNonLocalStorage
class TestCollectionLinks
}}}
`test_storage.py`:
{{{
class TestCollectionCachedStorage
class TestCollectionManifestStorage
class TestCollectionSimpleCachedStorage
class CustomStaticFilesStorage
class TestStaticFilePermissions
}}}
`test_templatetags.py`:
{{{
class TestTemplateTag
}}}
`test_views.py`:
{{{
class TestServeStatic
class TestServeDisabled
class TestServeStaticWithDefaultURL
class TestServeStaticWithURLHelper
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/24982#comment:2>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"b35b43dff81d46e930ffa1e05eb50968b8557102" b35b43d]:
{{{
#!CommitTicketReference repository=""
revision="b35b43dff81d46e930ffa1e05eb50968b8557102"
Fixed #24982 -- Split staticfiles tests into multiple files
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/24982#comment:3>