diff options
author | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 18:53:18 (GMT) |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2012-03-25 18:53:18 (GMT) |
commit | e58a562d9395b8a4ed9419b735cad9f78c8ae802 (patch) | |
tree | 120e3cd3e4a8d791a17669c96d28068fcf9bce8c /Lib/unittest/test | |
parent | 87b3caf873a45fd836982296374f5b4e49dd9e30 (diff) | |
download | cpython-e58a562d9395b8a4ed9419b735cad9f78c8ae802.zip cpython-e58a562d9395b8a4ed9419b735cad9f78c8ae802.tar.gz cpython-e58a562d9395b8a4ed9419b735cad9f78c8ae802.tar.bz2 |
unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r-- | Lib/unittest/test/testmock/testpatch.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Lib/unittest/test/testmock/testpatch.py b/Lib/unittest/test/testmock/testpatch.py index 204a30a..6256855 100644 --- a/Lib/unittest/test/testmock/testpatch.py +++ b/Lib/unittest/test/testmock/testpatch.py @@ -1742,6 +1742,26 @@ class PatchTest(unittest.TestCase): p.stop() + def test_callable_spec_as_list(self): + spec = ('__call__',) + p = patch(MODNAME, spec=spec) + m = p.start() + try: + self.assertTrue(callable(m)) + finally: + p.stop() + + + def test_not_callable_spec_as_list(self): + spec = ('foo', 'bar') + p = patch(MODNAME, spec=spec) + m = p.start() + try: + self.assertFalse(callable(m)) + finally: + p.stop() + + if __name__ == '__main__': unittest.main() |