Skip to content
Snippets Groups Projects
Commit ee2710e1 authored by Michael Fladischer's avatar Michael Fladischer :speech_balloon:
Browse files

Add upstream patch to fix tests that should test mock but were testing...

Add upstream patch to fix tests that should test mock but were testing unittest.mock (Closes: #1001422, #1002345).
parent 957bcb94
No related branches found
No related tags found
No related merge requests found
python-mock (4.0.3-3) UNRELEASED; urgency=medium
* Depend on python3-all for autopkgtests.
* Add upstream patch to fix tests that should test mock but were
testing unittest.mock (Closes: #1001422, #1002345).
-- Michael Fladischer <fladi@debian.org> Thu, 13 Jan 2022 15:19:42 +0000
......
From: Chris Withers <chris@simplistix.co.uk>
Date: Thu, 15 Apr 2021 08:27:25 +0100
Subject: fix tests that should test mock but were testing unittest.mock
---
mock/tests/testmock.py | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/mock/tests/testmock.py b/mock/tests/testmock.py
index 5702b6d..1a70909 100644
--- a/mock/tests/testmock.py
+++ b/mock/tests/testmock.py
@@ -13,6 +13,7 @@ from mock import (
create_autospec, mock
)
from mock.mock import _Call, _CallList
+import mock.mock as mock_module
class Iter(object):
@@ -47,7 +48,7 @@ class MockTest(unittest.TestCase):
# if __all__ is badly defined then import * will raise an error
# We have to exec it because you can't import * inside a method
# in Python 3
- exec("from unittest.mock import *")
+ exec("from mock.mock import *")
def test_constructor(self):
@@ -2137,16 +2138,16 @@ class MockTest(unittest.TestCase):
# test_patch_dict_test_prefix and test_patch_test_prefix not restoring
# causes the objects patched to go out of sync
- old_patch = unittest.mock.patch
+ old_patch = mock_module.patch
# Directly using __setattr__ on unittest.mock causes current imported
# reference to be updated. Use a lambda so that during cleanup the
# re-imported new reference is updated.
- self.addCleanup(lambda patch: setattr(unittest.mock, 'patch', patch),
+ self.addCleanup(lambda patch: setattr(mock_module, 'patch', patch),
old_patch)
with patch.dict('sys.modules'):
- del sys.modules['unittest.mock']
+ del sys.modules['mock']
# This trace will stop coverage being measured ;-)
def trace(frame, event, arg): # pragma: no cover
@@ -2155,7 +2156,7 @@ class MockTest(unittest.TestCase):
self.addCleanup(sys.settrace, sys.gettrace())
sys.settrace(trace)
- from unittest.mock import (
+ from mock.mock import (
Mock, MagicMock, NonCallableMock, NonCallableMagicMock
)
@@ -2170,10 +2171,10 @@ class MockTest(unittest.TestCase):
def test_bool_not_called_when_passing_spec_arg(self):
class Something:
def __init__(self):
- self.obj_with_bool_func = unittest.mock.MagicMock()
+ self.obj_with_bool_func = mock_module.MagicMock()
obj = Something()
- with unittest.mock.patch.object(obj, 'obj_with_bool_func', autospec=True): pass
+ with mock_module.patch.object(obj, 'obj_with_bool_func', autospec=True): pass
self.assertEqual(obj.obj_with_bool_func.__bool__.call_count, 0)
0001-Disable-failing-test.patch
0002-Privacy-breach-in-docs.patch
0003-Install-unittests.patch
0004-fix-tests-that-should-test-mock-but-were-testing-uni.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment