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

fixed tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2009-12-04 07:09:21 +00:00
parent 6ac5764dd5
commit 4cec4edd0b
2 changed files with 2 additions and 2 deletions

View file

@ -116,7 +116,7 @@ assert_equal %q{1}, %q{
Const
}
}
assert_equal %q{C}, %q{
assert_equal %q{top}, %q{
Const = :top
class C
Const = :C

View file

@ -238,7 +238,7 @@ class TestModule < Test::Unit::TestCase
end
assert("foo", Other.class_eval_test)
assert_equal([Other], Other.class_eval { |*args| args })
assert_equal([], Other.class_eval { |*args| args })
end
def test_const_defined?