Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
assert_send(send_ary, m = nil)
public
send_ary is a receiver, message and arguments.
Fails unless the call returns a true value TODO: I should prolly remove
this from specs
# File lib/minitest/unit.rb, line 413
def assert_send send_ary, m = nil
recv, msg, *args = send_ary
m = message(m) {
"Expected #{mu_pp(recv)}.#{msg}(*#{mu_pp(args)}) to return true" }
assert recv.__send__(msg, *args), m
end