method

assert_not_called

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: MethodCallAssertions
assert_not_called(object, method_name, message = nil, &block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/testing/method_call_assertions.rb, line 34
        def assert_not_called(object, method_name, message = nil, &block)
          assert_called(object, method_name, message, times: 0, &block)
        end
Register or log in to add new notes.