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