Method: MiniTest::Assertions#assert_operator
- Defined in:
- lib/minitest/unit.rb
#assert_operator(o1, op, o2 = UNDEFINED, msg = nil) ⇒ Object
For testing with binary operators.
assert_operator 5, :<=, 4
310 311 312 313 314 |
# File 'lib/minitest/unit.rb', line 310 def assert_operator o1, op, o2 = UNDEFINED, msg = nil return assert_predicate o1, op, msg if UNDEFINED == o2 msg = (msg) { "Expected #{mu_pp(o1)} to be #{op} #{mu_pp(o2)}" } assert o1.__send__(op, o2), msg end |