- M
- W
See MiniTest::Assertions#assert_operator
n.must_be :<=, 42
See MiniTest::Assertions#assert_empty.
collection.must_be_empty
See MiniTest::Assertions#assert_instance_of
obj.must_be_instance_of klass
See MiniTest::Assertions#assert_kind_of
obj.must_be_kind_of mod
See MiniTest::Assertions#assert_nil
obj.must_be_nil
See MiniTest::Assertions#assert_same
a.must_be_same_as b
See MiniTest::Assertions#assert_silent
proc { ... }.must_be_silent
See MiniTest::Assertions#assert_in_delta
n.must_be_close_to m [, delta]
See MiniTest::Assertions#assert_in_epsilon
n.must_be_within_epsilon m [, epsilon]
See MiniTest::Assertions#assert_equal
a.must_equal b
See MiniTest::Assertions#assert_includes
collection.must_include obj
See MiniTest::Assertions#assert_match
a.must_match b
See MiniTest::Assertions#assert_output
proc { ... }.must_output out_or_nil [, err]
See MiniTest::Assertions#assert_raises
proc { ... }.must_raise exception
See MiniTest::Assertions#assert_respond_to
obj.must_respond_to msg
See MiniTest::Assertions#assert_send TODO: remove me
a.must_send
See MiniTest::Assertions#assert_throws
proc { ... }.must_throw sym
See MiniTest::Assertions#refute_operator
n.wont_be :<=, 42
See MiniTest::Assertions#refute_empty
collection.wont_be_empty
See MiniTest::Assertions#refute_instance_of
obj.wont_be_instance_of klass
See MiniTest::Assertions#refute_kind_of
obj.wont_be_kind_of mod
See MiniTest::Assertions#refute_nil
obj.wont_be_nil
See MiniTest::Assertions#refute_same
a.wont_be_same_as b
See MiniTest::Assertions#refute_in_delta
n.wont_be_close_to m [, delta]
See MiniTest::Assertions#refute_in_epsilon
n.wont_be_within_epsilon m [, epsilon]
See MiniTest::Assertions#refute_equal
a.wont_equal b
See MiniTest::Assertions#refute_includes
collection.wont_include obj
See MiniTest::Assertions#refute_match
a.wont_match b
See MiniTest::Assertions#refute_respond_to
obj.wont_respond_to msg