Sha256: 750375c48d4b16f729b24232c2b13c0501e84fe47bc39202d4df1940d32e49fa
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require File.expand_path('test_helper.rb', File.dirname(__FILE__)) # Test behavior of overridden assert method. class AssertTest < Test::Unit::TestCase def test_simple_assert assert { true } end def failing_block_assertion_test message, &block begin assert(&block) rescue Exception => e assert_equal message, e.message end end def test_simple_failing_assert failing_block_assertion_test("false is false.") { false } end def test_operator_equals_assert foo = 24 failing_block_assertion_test("(foo == 23) is false\nfoo is 24.") { foo == 23 } end def test_instance_variable_assert @foo = 24 failing_block_assertion_test("(@foo == 23) is false\n@foo is 24.") { @foo == 23 } end # Special cases def test_assert_with_custom_message foo = false begin assert("We want foo") { foo } rescue Exception => e assert_equal "We want foo.\nfoo is false.", e.message end end def test_original_assert begin assert false rescue Exception => e assert_equal "<false> is not true.", e.message end end def test_original_assert_with_custom_message begin assert false, "We want the truth" rescue Exception => e assert_equal "We want the truth.\n<false> is not true.", e.message end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iba-0.0.2 | test/assert_test.rb |