From a0abd3c4b14f1387986fc87d273a305bb4bb16fa Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 8 Feb 2007 13:28:03 +0000 Subject: * test/ruby/test_string.rb: ("foo" == :foo) and ("foo" === :foo) should be false. * ChangeLog: fix last messages. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index db508dc239..e715dfc5ec 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -78,8 +78,8 @@ class TestString < Test::Unit::TestCase assert_equal(S("FooBar"), s) s[-3,3] = S("Foo") assert_equal(S("FooFoo"), s) - assert_raise (IndexError) { s[7,3] = S("Bar") } - assert_raise (IndexError) { s[-7,3] = S("Bar") } + assert_raise(IndexError) { s[7,3] = S("Bar") } + assert_raise(IndexError) { s[-7,3] = S("Bar") } s = S("FooBar") s[0..2] = S("A") @@ -88,8 +88,8 @@ class TestString < Test::Unit::TestCase assert_equal(S("AFoo"), s) s[-4..-4] = S("Foo") assert_equal(S("FooFoo"), s) - assert_raise (RangeError) { s[7..10] = S("Bar") } - assert_raise (RangeError) { s[-7..-10] = S("Bar") } + assert_raise(RangeError) { s[7..10] = S("Bar") } + assert_raise(RangeError) { s[-7..-10] = S("Bar") } s = S("FooBar") s[/^F../]= S("Bar") @@ -100,19 +100,19 @@ class TestString < Test::Unit::TestCase s[/xyzzy/] = S("None") assert_equal(S("BarFoo"), s) else - assert_raise (IndexError) { s[/xyzzy/] = S("None") } + assert_raise(IndexError) { s[/xyzzy/] = S("None") } end if @aref_re_nth s[/([A-Z]..)([A-Z]..)/, 1] = S("Foo") assert_equal(S("FooFoo"), s) s[/([A-Z]..)([A-Z]..)/, 2] = S("Bar") assert_equal(S("FooBar"), s) - assert_raise (IndexError) { s[/([A-Z]..)([A-Z]..)/, 3] = "None" } + assert_raise(IndexError) { s[/([A-Z]..)([A-Z]..)/, 3] = "None" } s[/([A-Z]..)([A-Z]..)/, -1] = S("Foo") assert_equal(S("FooFoo"), s) s[/([A-Z]..)([A-Z]..)/, -2] = S("Bar") assert_equal(S("BarFoo"), s) - assert_raise (IndexError) { s[/([A-Z]..)([A-Z]..)/, -3] = "None" } + assert_raise(IndexError) { s[/([A-Z]..)([A-Z]..)/, -3] = "None" } end s = S("FooBar") @@ -153,7 +153,7 @@ class TestString < Test::Unit::TestCase end def test_EQUAL # '==' - assert_equal(true, S("foo") == :foo) + assert_equal(false, S("foo") == :foo) assert(S("abcdef") == S("abcdef")) pre_1_7_1 do @@ -223,7 +223,7 @@ class TestString < Test::Unit::TestCase end def test_VERY_EQUAL # '===' - assert_equal(true, S("foo") === :foo) + # assert_equal(true, S("foo") === :foo) casetest(S("abcdef"), S("abcdef")) pre_1_7_1 do -- cgit v1.2.3