assert_not_called()
Assert the mock was never called.
1 2 3 4 5 6 7 | >>> m = Mock() >>> m.hello.assert_not_called() >>> obj = m.hello() >>> m.hello.assert_not_called() Traceback (most recent call last): ... AssertionError: Expected 'hello' to not have been called. Called 1 times. |
New in version 3.5.
Please login to continue.