summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-07 13:42:24 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-07 13:42:24 (GMT)
commit8b2cd75bdd22c2770960f186fb945b5de1eca524 (patch)
tree296031c5e4d0e8727f0e5f8cafffb2226f474280
parent595365de32545316be2c009ef3729084efd0056e (diff)
downloadcpython-8b2cd75bdd22c2770960f186fb945b5de1eca524.zip
cpython-8b2cd75bdd22c2770960f186fb945b5de1eca524.tar.gz
cpython-8b2cd75bdd22c2770960f186fb945b5de1eca524.tar.bz2
Process DEFAULT values in mock side_effect that returns iterator.
Patch by Michael Ford.
-rw-r--r--Lib/unittest/mock.py2
-rw-r--r--Lib/unittest/test/testmock/testmock.py4
2 files changed, 6 insertions, 0 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index 57bf957..073869a 100644
--- a/Lib/unittest/mock.py
+++ b/Lib/unittest/mock.py
@@ -904,6 +904,8 @@ class CallableMixin(Base):
result = next(effect)
if _is_exception(result):
raise result
+ if result is DEFAULT:
+ result = self.return_value
return result
ret_val = effect(*args, **kwargs)
diff --git a/Lib/unittest/test/testmock/testmock.py b/Lib/unittest/test/testmock/testmock.py
index 2c6f128..3d0776c 100644
--- a/Lib/unittest/test/testmock/testmock.py
+++ b/Lib/unittest/test/testmock/testmock.py
@@ -906,6 +906,10 @@ class MockTest(unittest.TestCase):
self.assertRaises(StopIteration, mock)
self.assertIs(mock.side_effect, this_iter)
+ def test_side_effect_iterator_default(self):
+ mock = Mock(return_value=2)
+ mock.side_effect = iter([1, DEFAULT])
+ self.assertEqual([mock(), mock()], [1, 2])
def test_assert_has_calls_any_order(self):
mock = Mock()