aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa Roach <lisaroach14@gmail.com>2019-09-10 12:18:40 +0100
committerGitHub <noreply@github.com>2019-09-10 12:18:40 +0100
commitf1a297acb60b88917712450ebd3cfa707e6efd6b (patch)
treec1307ca321b2aae7abc43f714a7310a38331c4a6 /Lib/unittest/test
parentbpo-38069: Convert _posixsubprocess to PEP-384 (GH-15780) (diff)
downloadcpython-f1a297acb60b88917712450ebd3cfa707e6efd6b.tar.gz
cpython-f1a297acb60b88917712450ebd3cfa707e6efd6b.tar.bz2
cpython-f1a297acb60b88917712450ebd3cfa707e6efd6b.zip
bpo-37251: Removes __code__ check from _is_async_obj. (GH-15830)
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r--Lib/unittest/test/testmock/testasync.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/unittest/test/testmock/testasync.py b/Lib/unittest/test/testmock/testasync.py
index 865cfdc0026..550234223cc 100644
--- a/Lib/unittest/test/testmock/testasync.py
+++ b/Lib/unittest/test/testmock/testasync.py
@@ -18,6 +18,10 @@ class AsyncClass:
def normal_method(self):
pass
+class AwaitableClass:
+ def __await__(self):
+ yield
+
async def async_func():
pass
@@ -160,6 +164,10 @@ class AsyncAutospecTest(unittest.TestCase):
with self.assertRaises(RuntimeError):
create_autospec(async_func, instance=True)
+ def test_create_autospec_awaitable_class(self):
+ awaitable_mock = create_autospec(spec=AwaitableClass())
+ self.assertIsInstance(create_autospec(awaitable_mock), AsyncMock)
+
def test_create_autospec(self):
spec = create_autospec(async_func_args)
awaitable = spec(1, 2, c=3)
@@ -321,6 +329,13 @@ class AsyncSpecSetTest(unittest.TestCase):
self.assertIsInstance(mock.normal_method, MagicMock)
self.assertIsInstance(mock, MagicMock)
+ def test_magicmock_lambda_spec(self):
+ mock_obj = MagicMock()
+ mock_obj.mock_func = MagicMock(spec=lambda x: x)
+
+ with patch.object(mock_obj, "mock_func") as cm:
+ self.assertIsInstance(cm, MagicMock)
+
class AsyncArguments(unittest.TestCase):
def test_add_return_value(self):