X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/91e1e1328aa0a11ef50017316ff97149886e1b05..d7a28dd78631fb962da95fb2d2de0e18ca6754a4:/tests/data/preview_context_managers/targeting_py38.py?ds=sidebyside

diff --git a/tests/data/preview_context_managers/targeting_py38.py b/tests/data/preview_context_managers/targeting_py38.py
index 6ec4684..f125cdf 100644
--- a/tests/data/preview_context_managers/targeting_py38.py
+++ b/tests/data/preview_context_managers/targeting_py38.py
@@ -23,6 +23,14 @@ with \
     pass
 
 
+with mock.patch.object(
+    self.my_runner, "first_method", autospec=True
+) as mock_run_adb, mock.patch.object(
+    self.my_runner, "second_method", autospec=True, return_value="foo"
+):
+    pass
+
+
 # output
 
 
@@ -36,3 +44,11 @@ with make_context_manager1() as cm1, make_context_manager2(), make_context_manag
 
 with new_new_new1() as cm1, new_new_new2():
     pass
+
+
+with mock.patch.object(
+    self.my_runner, "first_method", autospec=True
+) as mock_run_adb, mock.patch.object(
+    self.my_runner, "second_method", autospec=True, return_value="foo"
+):
+    pass