1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix style for ruby-mode.el.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-10-13 00:27:41 +00:00
parent 769f5fc41c
commit 82ff894c04

View file

@ -175,11 +175,11 @@ class TestString < Test::Unit::TestCase
def o.<=>(x); nil; end
assert_nil("foo" <=> o)
class<<o;undef <=>;end
class << o;undef <=>;end
def o.<=>(x); 1; end
assert_equal(-1, "foo" <=> o)
class<<o;undef <=>;end
class << o;undef <=>;end
def o.<=>(x); 2**100; end
assert_equal(-(2**100), "foo" <=> o)
end
@ -202,7 +202,7 @@ class TestString < Test::Unit::TestCase
def o.to_str; end
def o.==(x); false; end
assert_equal(false, "foo" == o)
class<<o;undef ==;end
class << o;undef ==;end
def o.==(x); true; end
assert_equal(true, "foo" == o)
end
@ -1818,7 +1818,7 @@ class TestString < Test::Unit::TestCase
c.class_eval { attr 1 }
end
class<<o;undef to_str;end
class << o;undef to_str;end
def o.to_str; "foo"; end
assert_nothing_raised do
c.class_eval { attr o }