method
assert_not_equal
assert_not_equal(exp, act, msg=nil)
public
Hide source
# File lib/test/unit/assertions.rb, line 94 def assert_not_equal(exp, act, msg=nil) msg = message(msg) { "<#{mu_pp(exp)}> expected to be != to\n<#{mu_pp(act)}>" } assert(exp != act, msg) end


