summaryrefslogtreecommitdiff
path: root/Lib/unittest/test/testmock/testpatch.py
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2022-01-23 18:42:41 +0000
committerIrit Katriel <iritkatriel@yahoo.com>2022-01-23 18:50:44 +0000
commit4f13987fe8d9de2297deaf048f47a35d6908e84f (patch)
tree5501f2a732144881fdc3f517a439ecb8c978131e /Lib/unittest/test/testmock/testpatch.py
parent94d6434ba7ec3e4b154e515c5583b0b665ab0b09 (diff)
downloadcpython-git-backport-f7955a8-3.9.tar.gz
bpo-41403: Improve error message for invalid mock target (GH-30833)backport-f7955a8-3.9
(cherry picked from commit f7955a82e36d4c32ebdd7b7707cdf0e6ffa7a418)
Diffstat (limited to 'Lib/unittest/test/testmock/testpatch.py')
-rw-r--r--Lib/unittest/test/testmock/testpatch.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/unittest/test/testmock/testpatch.py b/Lib/unittest/test/testmock/testpatch.py
index 233a5afffa..8ab63a1317 100644
--- a/Lib/unittest/test/testmock/testpatch.py
+++ b/Lib/unittest/test/testmock/testpatch.py
@@ -1933,8 +1933,13 @@ class PatchTest(unittest.TestCase):
def test_invalid_target(self):
- with self.assertRaises(TypeError):
- patch('')
+ class Foo:
+ pass
+
+ for target in ['', 12, Foo()]:
+ with self.subTest(target=target):
+ with self.assertRaises(TypeError):
+ patch(target)
def test_cant_set_kwargs_when_passing_a_mock(self):