123456789_123456789_123456789_123456789_123456789_

Module: Minitest::Expectations

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Object
Defined in: lib/minitest/expectations.rb

Overview

It's where you hide your “assertions”.

Please note, because of the way that expectations are implemented, all expectations (eg must_equal) are dependent upon a thread local variable :current_spec. If your specs rely on mixing threads into the specs themselves, you're better off using assertions. For example:

it "should still work in threads" do
  my_threaded_thingy do
    (1+1).must_equal 2  # bad
    assert_equal 2, 1+1 # good
  end
end

Instance Method Summary

Instance Method Details

#assert_empty

See Assertions#assert_empty.

collection.must_be_empty

:method: must_be_empty

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 25

infect_an_assertion :assert_empty, :must_be_empty, :unary

#assert_equal

See Assertions#assert_equal

a.must_equal b

:method: must_equal

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 34

infect_an_assertion :assert_equal, :must_equal

#assert_in_delta

See Assertions#assert_in_delta

n.must_be_close_to m [, delta]

:method: must_be_close_to

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 43

infect_an_assertion :assert_in_delta, :must_be_close_to

#assert_in_epsilon

See Assertions#assert_in_epsilon

n.must_be_within_epsilon m [, epsilon]

:method: must_be_within_epsilon

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 54

infect_an_assertion :assert_in_epsilon, :must_be_within_epsilon

#assert_includes

See Assertions#assert_includes

collection.must_include obj

:method: must_include

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 63

infect_an_assertion :assert_includes, :must_include, :reverse

#assert_instance_of

See Assertions#assert_instance_of

obj.must_be_instance_of klass

:method: must_be_instance_of

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 72

infect_an_assertion :assert_instance_of, :must_be_instance_of

#assert_kind_of

See Assertions#assert_kind_of

obj.must_be_kind_of mod

:method: must_be_kind_of

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 81

infect_an_assertion :assert_kind_of, :must_be_kind_of

#assert_match

See Assertions#assert_match

a.must_match b

:method: must_match

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 90

infect_an_assertion :assert_match, :must_match

#assert_nil

See Assertions#assert_nil

obj.must_be_nil

:method: must_be_nil

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 99

infect_an_assertion :assert_nil, :must_be_nil, :unary

#assert_operator

See Assertions#assert_operator

n.must_be :<=, 42

This can also do predicates:

str.must_be :empty?

:method: must_be

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 112

infect_an_assertion :assert_operator, :must_be, :reverse

#assert_output

See Assertions#assert_output

proc { ... }.must_output out_or_nil [, err]

:method: must_output

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 121

infect_an_assertion :assert_output, :must_output

#assert_raises

See Assertions#assert_raises

proc { ... }.must_raise exception

:method: must_raise

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 130

infect_an_assertion :assert_raises, :must_raise

#assert_respond_to

See Assertions#assert_respond_to

obj.must_respond_to msg

:method: must_respond_to

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 139

infect_an_assertion :assert_respond_to, :must_respond_to, :reverse

#assert_same

See Assertions#assert_same

a.must_be_same_as b

:method: must_be_same_as

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 148

infect_an_assertion :assert_same, :must_be_same_as

#assert_silent

See Assertions#assert_silent

proc { ... }.must_be_silent

:method: must_be_silent

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 157

infect_an_assertion :assert_silent, :must_be_silent

#assert_throws

See Assertions#assert_throws

proc { ... }.must_throw sym

:method: must_throw

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 166

infect_an_assertion :assert_throws, :must_throw

#refute_empty

See Assertions#refute_empty

collection.wont_be_empty

:method: wont_be_empty

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 175

infect_an_assertion :refute_empty, :wont_be_empty, :unary

#refute_equal

See Assertions#refute_equal

a.wont_equal b

:method: wont_equal

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 184

infect_an_assertion :refute_equal, :wont_equal

#refute_in_delta

See Assertions#refute_in_delta

n.wont_be_close_to m [, delta]

:method: wont_be_close_to

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 193

infect_an_assertion :refute_in_delta, :wont_be_close_to

#refute_in_epsilon

See Assertions#refute_in_epsilon

n.wont_be_within_epsilon m [, epsilon]

:method: wont_be_within_epsilon

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 204

infect_an_assertion :refute_in_epsilon, :wont_be_within_epsilon

#refute_includes

See Assertions#refute_includes

collection.wont_include obj

:method: wont_include

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 213

infect_an_assertion :refute_includes, :wont_include, :reverse

#refute_instance_of

See Assertions#refute_instance_of

obj.wont_be_instance_of klass

:method: wont_be_instance_of

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 222

infect_an_assertion :refute_instance_of, :wont_be_instance_of

#refute_kind_of

See Assertions#refute_kind_of

obj.wont_be_kind_of mod

:method: wont_be_kind_of

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 231

infect_an_assertion :refute_kind_of, :wont_be_kind_of

#refute_match

See Assertions#refute_match

a.wont_match b

:method: wont_match

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 240

infect_an_assertion :refute_match, :wont_match

#refute_nil

See Assertions#refute_nil

obj.wont_be_nil

:method: wont_be_nil

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 249

infect_an_assertion :refute_nil, :wont_be_nil, :unary

#refute_operator

See Assertions#refute_operator

n.wont_be :<=, 42

This can also do predicates:

str.wont_be :empty?

:method: wont_be

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 262

infect_an_assertion :refute_operator, :wont_be, :reverse

#refute_respond_to

See Assertions#refute_respond_to

obj.wont_respond_to msg

:method: wont_respond_to

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 271

infect_an_assertion :refute_respond_to, :wont_respond_to, :reverse

#refute_same

See Assertions#refute_same

a.wont_be_same_as b

:method: wont_be_same_as

[ GitHub ]

  
# File 'lib/minitest/expectations.rb', line 280

infect_an_assertion :refute_same, :wont_be_same_as