summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_module_loading.py
AgeCommit message (Expand)Author
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-09-16Refs #32074 -- Fixed find_module()/find_loader() warnings on Python 3.10+.Mariusz Felisiak
2018-11-27Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham
2017-06-08Fixed #28241 -- Allowed module_has_submodule()'s module_name arg to be a dott...Thomas Khyn
2017-01-27Refs #23919 -- Removed an obsolete test for a Python 2 code path (refs #15662).Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
2017-01-20Refs #23919 -- Simplified assertRaisesRegex()'s that accounted for Python 2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2016-12-07Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham
2016-01-29Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as app...Hasan
2016-01-29Refs #26022 -- Used context manager version of assertRaises in tests.Hasan
2015-06-06Fixed ImportError message in utils.module_loading.import_string()Tomasz Kontusz
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-18Removed utils.module_loading.import_by_path() per deprecation timeline; refs ...Tim Graham
2014-12-30Applied ignore_warnings to Django testsClaude Paroz
2014-10-31Fixed #23670 -- Prevented partial import state during module autodiscoveryMarkus Holtermann
2014-03-22Advanced deprecation warnings for 1.8.Aymeric Augustin
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2014-01-25Moved sys.path-extending decorator to django.test.utils and used throughout t...Carl Meyer
2013-12-23Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Stopped iterating on INSTALLED_APPS.Aymeric Augustin
2013-11-02Fixing E302 ErrorsJason Myers
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-09-13Fixed #21060 -- Refactored admin's autodiscover method to make it reusable.Juan Catalano
2013-07-29Deprecated django.utils.importlibClaude Paroz
2013-07-01Stopped using django.utils.unittest in the test suite.Aymeric Augustin
2013-04-12Modified utils_tests for unittest2 discovery.Preston Timmons