test/unit/assertions/assert_match_tests.rb in assert-2.4.0 vs test/unit/assertions/assert_match_tests.rb in assert-2.5.0

- old
+ new

@@ -4,18 +4,19 @@ require 'assert/utils' module Assert::Assertions class AssertMatchTests < Assert::Context - desc "the assert_match helper" + desc "`assert_match`" setup do desc = @desc = "assert match fail desc" args = @args = [ "not", "a string", desc ] @test = Factory.test do assert_match(/a/, "a string") # pass assert_match(*args) # fail end + @c = @test.config @test.run end subject{ @test } should "produce results as expected" do @@ -23,25 +24,27 @@ assert_equal 1, subject.result_count(:pass) assert_equal 1, subject.result_count(:fail) end should "have a fail message with custom and generic explanations" do - exp = "#{@args[2]}\nExpected #{Assert::U.show(@args[1])} to match #{Assert::U.show(@args[0])}." + exp = "#{@args[2]}\nExpected #{Assert::U.show(@args[1], @c)}"\ + " to match #{Assert::U.show(@args[0], @c)}." assert_equal exp, subject.fail_results.first.message end end class AssertNotMatchTests < Assert::Context - desc "the assert_not_match helper" + desc "`assert_not_match`" setup do desc = @desc = "assert not match fail desc" args = @args = [ /a/, "a string", desc ] @test = Factory.test do assert_not_match(*args) # fail assert_not_match("not", "a string") # pass end + @c = @test.config @test.run end subject{ @test } should "produce results as expected" do @@ -49,10 +52,11 @@ assert_equal 1, subject.result_count(:pass) assert_equal 1, subject.result_count(:fail) end should "have a fail message with custom and generic explanations" do - exp = "#{@args[2]}\n#{Assert::U.show(@args[1])} not expected to match #{Assert::U.show(@args[0])}." + exp = "#{@args[2]}\nExpected #{Assert::U.show(@args[1], @c)}"\ + " to not match #{Assert::U.show(@args[0], @c)}." assert_equal exp, subject.fail_results.first.message end end