From 921b2d1cfb67bae2941642015fbe35f7e7b81698 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 29 Apr 2010 05:46:04 +0000 Subject: * lib/test/unit/assertions.rb (Test::Unit::Assertions#assert): use more descriptive assertions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_stringchar.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_stringchar.rb') diff --git a/test/ruby/test_stringchar.rb b/test/ruby/test_stringchar.rb index 184e221211..b70f171c84 100644 --- a/test/ruby/test_stringchar.rb +++ b/test/ruby/test_stringchar.rb @@ -37,8 +37,8 @@ END $x.gsub!(/((.|\n)*?)B((.|\n)*?)D/m ,'\1\3') assert_equal("AC\nAC\n", $x) - assert("foobar" =~ /foo(?=(bar)|(baz))/) - assert("foobaz" =~ /foo(?=(bar)|(baz))/) + assert_match(/foo(?=(bar)|(baz))/, "foobar") + assert_match(/foo(?=(bar)|(baz))/, "foobaz") $foo = "abc" assert_equal("abc = abc", "#$foo = abc") -- cgit v1.2.3