method

refute_operator

ruby latest stable - Class: MiniTest::Assertions

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.

refute_operator(o1, op, o2 = UNDEFINED, msg = nil)
public

Fails if o1 is not op o2. Eg:

refute_operator 1, :>, 2 #=> pass
refute_operator 1, :<, 2 #=> fail