summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test
diff options
context:
space:
mode:
authorKushal Das <kushaldas@gmail.com>2014-04-16 20:06:14 (GMT)
committerKushal Das <kushaldas@gmail.com>2014-04-16 20:06:14 (GMT)
commit8af9db3e4fa17fb7add3f904a19d816f7787ee1c (patch)
tree18ffd4eb5f027edb0648bd32088bb455ef2a3c59 /Lib/unittest/test
parent8c14534df6c7bd561fac31985fba60306e181265 (diff)
downloadcpython-8af9db3e4fa17fb7add3f904a19d816f7787ee1c.zip
cpython-8af9db3e4fa17fb7add3f904a19d816f7787ee1c.tar.gz
cpython-8af9db3e4fa17fb7add3f904a19d816f7787ee1c.tar.bz2
Closes Issue 21262: New method assert_not_called for Mock.
It raises AssertionError if the mock has been called.
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r--Lib/unittest/test/testmock/testmock.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/unittest/test/testmock/testmock.py b/Lib/unittest/test/testmock/testmock.py
index 59353a0..b65dc32 100644
--- a/Lib/unittest/test/testmock/testmock.py
+++ b/Lib/unittest/test/testmock/testmock.py
@@ -1198,6 +1198,15 @@ class MockTest(unittest.TestCase):
m.assert_foo_call()
m.assret_foo_call()
+ #Issue21262
+ def test_assert_not_called(self):
+ m = Mock()
+ m.hello.assert_not_called()
+ m.hello()
+ with self.assertRaises(AssertionError):
+ m.hello.assert_not_called()
+
+
def test_mock_add_spec(self):
class _One(object):
one = 1