summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_module_loading.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-181-29/+5
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-72/+96
* Refs #32074 -- Fixed find_module()/find_loader() warnings on Python 3.10+.Mariusz Felisiak2021-09-161-18/+25
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-2/+2
* Fixed #28241 -- Allowed module_has_submodule()'s module_name arg to be a dott...Thomas Khyn2017-06-081-0/+12
* Refs #23919 -- Removed an obsolete test for a Python 2 code path (refs #15662).Tim Graham2017-01-271-35/+0
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Simplified assertRaisesRegex()'s that accounted for Python 2.Tim Graham2017-01-201-2/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-3/+3
* Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham2016-12-071-3/+2
* Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as app...Hasan2016-01-291-5/+5
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-10/+18
* Fixed ImportError message in utils.module_loading.import_string()Tomasz Kontusz2015-06-061-1/+3
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+4
* Removed utils.module_loading.import_by_path() per deprecation timeline; refs ...Tim Graham2015-01-181-38/+2
* Applied ignore_warnings to Django testsClaude Paroz2014-12-301-3/+4
* Fixed #23670 -- Prevented partial import state during module autodiscoveryMarkus Holtermann2014-10-311-0/+25
* Advanced deprecation warnings for 1.8.Aymeric Augustin2014-03-221-2/+2
* Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz2014-03-081-2/+3
* Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag2014-02-081-7/+25
* Moved sys.path-extending decorator to django.test.utils and used throughout t...Carl Meyer2014-01-251-26/+25
* Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin2013-12-231-8/+2
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
* Stopped iterating on INSTALLED_APPS.Aymeric Augustin2013-12-221-2/+7
* Fixing E302 ErrorsJason Myers2013-11-021-0/+5
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+1
* Fixed #21060 -- Refactored admin's autodiscover method to make it reusable.Juan Catalano2013-09-131-1/+30
* Deprecated django.utils.importlibClaude Paroz2013-07-291-1/+1
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-2/+2
* Modified utils_tests for unittest2 discovery.Preston Timmons2013-04-121-0/+194