summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-08 13:28:03 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-08 13:28:03 +0000
commita0abd3c4b14f1387986fc87d273a305bb4bb16fa (patch)
tree8b6ed16f3852c31142629858f9ea2f3f04379c0e /test/ruby
parentcff97cc9f0adbc40df8a05b5d3ce795f318bd489 (diff)
* 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
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_string.rb18
1 files changed, 9 insertions, 9 deletions
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