mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.
This commit is contained in:
parent
f909fa84be
commit
b5f0b3478d
27 changed files with 84 additions and 104 deletions
|
|
@ -7,7 +7,6 @@ from zipimport import zipimporter
|
|||
|
||||
from django.test import SimpleTestCase, TestCase, modify_settings
|
||||
from django.test.utils import extend_sys_path
|
||||
from django.utils import six
|
||||
from django.utils._os import upath
|
||||
from django.utils.module_loading import (
|
||||
autodiscover_modules, import_string, module_has_submodule,
|
||||
|
|
@ -147,11 +146,11 @@ class AutodiscoverModulesTestCase(SimpleTestCase):
|
|||
autodiscover_modules('missing_module')
|
||||
|
||||
def test_autodiscover_modules_found_but_bad_module(self):
|
||||
with six.assertRaisesRegex(self, ImportError, "No module named '?a_package_name_that_does_not_exist'?"):
|
||||
with self.assertRaisesRegex(ImportError, "No module named '?a_package_name_that_does_not_exist'?"):
|
||||
autodiscover_modules('bad_module')
|
||||
|
||||
def test_autodiscover_modules_several_one_bad_module(self):
|
||||
with six.assertRaisesRegex(self, ImportError, "No module named '?a_package_name_that_does_not_exist'?"):
|
||||
with self.assertRaisesRegex(ImportError, "No module named '?a_package_name_that_does_not_exist'?"):
|
||||
autodiscover_modules('good_module', 'bad_module')
|
||||
|
||||
def test_autodiscover_modules_several_found(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue