module MiniTest::Expectations

It's where you hide your “assertions”.

Public Instance Methods

must_be() click to toggle source

See MiniTest::Assertions#assert_operator

n.must_be :<=, 42

This can also do predicates:

str.must_be :empty?
# File lib/minitest/spec.rb, line 367
infect_an_assertion :assert_operator, :must_be, :reverse
must_be_close_to() click to toggle source

See MiniTest::Assertions#assert_in_delta

n.must_be_close_to m [, delta]
# File lib/minitest/spec.rb, line 298
infect_an_assertion :assert_in_delta, :must_be_close_to
Also aliased as: must_be_within_delta
must_be_empty() click to toggle source

See MiniTest::Assertions#assert_empty.

collection.must_be_empty
# File lib/minitest/spec.rb, line 280
infect_an_assertion :assert_empty, :must_be_empty, :unary
must_be_instance_of() click to toggle source

See MiniTest::Assertions#assert_instance_of

obj.must_be_instance_of klass
# File lib/minitest/spec.rb, line 327
infect_an_assertion :assert_instance_of, :must_be_instance_of
must_be_kind_of() click to toggle source

See MiniTest::Assertions#assert_kind_of

obj.must_be_kind_of mod
# File lib/minitest/spec.rb, line 336
infect_an_assertion :assert_kind_of, :must_be_kind_of
must_be_nil() click to toggle source

See MiniTest::Assertions#assert_nil

obj.must_be_nil
# File lib/minitest/spec.rb, line 354
infect_an_assertion :assert_nil, :must_be_nil, :unary
must_be_same_as() click to toggle source

See MiniTest::Assertions#assert_same

a.must_be_same_as b
# File lib/minitest/spec.rb, line 403
infect_an_assertion :assert_same, :must_be_same_as
must_be_silent() click to toggle source

See MiniTest::Assertions#assert_silent

proc { ... }.must_be_silent
# File lib/minitest/spec.rb, line 422
infect_an_assertion :assert_silent, :must_be_silent
must_be_within_delta()
Alias for: must_be_close_to
must_be_within_epsilon() click to toggle source

See MiniTest::Assertions#assert_in_epsilon

n.must_be_within_epsilon m [, epsilon]
# File lib/minitest/spec.rb, line 309
infect_an_assertion :assert_in_epsilon, :must_be_within_epsilon
must_equal() click to toggle source

See MiniTest::Assertions#assert_equal

a.must_equal b
# File lib/minitest/spec.rb, line 289
infect_an_assertion :assert_equal, :must_equal
must_include() click to toggle source

See MiniTest::Assertions#assert_includes

collection.must_include obj
# File lib/minitest/spec.rb, line 318
infect_an_assertion :assert_includes, :must_include, :reverse
must_match() click to toggle source

See MiniTest::Assertions#assert_match

a.must_match b
# File lib/minitest/spec.rb, line 345
infect_an_assertion :assert_match, :must_match
must_output() click to toggle source

See MiniTest::Assertions#assert_output

proc { ... }.must_output out_or_nil [, err]
# File lib/minitest/spec.rb, line 376
infect_an_assertion :assert_output, :must_output
must_raise() click to toggle source

See MiniTest::Assertions#assert_raises

proc { ... }.must_raise exception
# File lib/minitest/spec.rb, line 385
infect_an_assertion :assert_raises, :must_raise
must_respond_to() click to toggle source

See MiniTest::Assertions#assert_respond_to

obj.must_respond_to msg
# File lib/minitest/spec.rb, line 394
infect_an_assertion :assert_respond_to, :must_respond_to, :reverse
must_send() click to toggle source

See MiniTest::Assertions#assert_send TODO: remove me

a.must_send
# File lib/minitest/spec.rb, line 413
infect_an_assertion :assert_send, :must_send
must_throw() click to toggle source

See MiniTest::Assertions#assert_throws

proc { ... }.must_throw sym
# File lib/minitest/spec.rb, line 431
infect_an_assertion :assert_throws, :must_throw
wont_be() click to toggle source

See MiniTest::Assertions#refute_operator

n.wont_be :<=, 42

This can also do predicates:

str.wont_be :empty?
# File lib/minitest/spec.rb, line 527
infect_an_assertion :refute_operator, :wont_be, :reverse
wont_be_close_to() click to toggle source

See MiniTest::Assertions#refute_in_delta

n.wont_be_close_to m [, delta]
# File lib/minitest/spec.rb, line 458
infect_an_assertion :refute_in_delta, :wont_be_close_to
Also aliased as: wont_be_within_delta
wont_be_empty() click to toggle source

See MiniTest::Assertions#refute_empty

collection.wont_be_empty
# File lib/minitest/spec.rb, line 440
infect_an_assertion :refute_empty, :wont_be_empty, :unary
wont_be_instance_of() click to toggle source

See MiniTest::Assertions#refute_instance_of

obj.wont_be_instance_of klass
# File lib/minitest/spec.rb, line 487
infect_an_assertion :refute_instance_of, :wont_be_instance_of
wont_be_kind_of() click to toggle source

See MiniTest::Assertions#refute_kind_of

obj.wont_be_kind_of mod
# File lib/minitest/spec.rb, line 496
infect_an_assertion :refute_kind_of, :wont_be_kind_of
wont_be_nil() click to toggle source

See MiniTest::Assertions#refute_nil

obj.wont_be_nil
# File lib/minitest/spec.rb, line 514
infect_an_assertion :refute_nil, :wont_be_nil, :unary
wont_be_same_as() click to toggle source

See MiniTest::Assertions#refute_same

a.wont_be_same_as b
# File lib/minitest/spec.rb, line 545
infect_an_assertion :refute_same, :wont_be_same_as
wont_be_within_delta()
Alias for: wont_be_close_to
wont_be_within_epsilon() click to toggle source

See MiniTest::Assertions#refute_in_epsilon

n.wont_be_within_epsilon m [, epsilon]
# File lib/minitest/spec.rb, line 469
infect_an_assertion :refute_in_epsilon, :wont_be_within_epsilon
wont_equal() click to toggle source

See MiniTest::Assertions#refute_equal

a.wont_equal b
# File lib/minitest/spec.rb, line 449
infect_an_assertion :refute_equal, :wont_equal
wont_include() click to toggle source

See MiniTest::Assertions#refute_includes

collection.wont_include obj
# File lib/minitest/spec.rb, line 478
infect_an_assertion :refute_includes, :wont_include, :reverse
wont_match() click to toggle source

See MiniTest::Assertions#refute_match

a.wont_match b
# File lib/minitest/spec.rb, line 505
infect_an_assertion :refute_match, :wont_match
wont_respond_to() click to toggle source

See MiniTest::Assertions#refute_respond_to

obj.wont_respond_to msg
# File lib/minitest/spec.rb, line 536
infect_an_assertion :refute_respond_to, :wont_respond_to, :reverse