diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-01-06 17:16:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-01-06 17:16:07 (GMT) |
commit | cd992bbe73dbbca356a94cf920f55012e5db689e (patch) | |
tree | 1277329e785fbf6a5f2fdf85b191d950b9dfa060 /Lib/unittest | |
parent | b27df6faa5e5b92674cdf629615595cecd33d875 (diff) | |
parent | 84b6fb0eea29b3b28a1a11124526b01ec0c9d17a (diff) | |
download | cpython-cd992bbe73dbbca356a94cf920f55012e5db689e.zip cpython-cd992bbe73dbbca356a94cf920f55012e5db689e.tar.gz cpython-cd992bbe73dbbca356a94cf920f55012e5db689e.tar.bz2 |
Merge 3.6
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/mock.py | 3 | ||||
-rw-r--r-- | Lib/unittest/test/testmock/testhelpers.py | 14 |
2 files changed, 15 insertions, 2 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 367c1e1..dbb05d7 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -1951,9 +1951,8 @@ class _Call(tuple): If the _Call has no name then it will match any name. """ - def __new__(cls, value=(), name=None, parent=None, two=False, + def __new__(cls, value=(), name='', parent=None, two=False, from_kall=True): - name = '' args = () kwargs = {} _len = len(value) diff --git a/Lib/unittest/test/testmock/testhelpers.py b/Lib/unittest/test/testmock/testhelpers.py index 3477634..d5f9e7c 100644 --- a/Lib/unittest/test/testmock/testhelpers.py +++ b/Lib/unittest/test/testmock/testhelpers.py @@ -306,6 +306,20 @@ class CallTest(unittest.TestCase): other_args = _Call(((1, 2), {'a': 3})) self.assertEqual(args, other_args) + def test_call_with_name(self): + self.assertEqual( + 'foo', + _Call((), 'foo')[0], + ) + self.assertEqual( + '', + _Call((('bar', 'barz'), ), )[0] + ) + self.assertEqual( + '', + _Call((('bar', 'barz'), {'hello': 'world'}), )[0] + ) + class SpecSignatureTest(unittest.TestCase): |