diff --git a/ChangeLog b/ChangeLog index ef9ee2134a..c856d5b5ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 20 00:07:36 2007 Masatoshi SEKI + + * test/drb/drbtest.rb (test_07_public_private_protected_missing): + followed current Ruby specification. + Wed Dec 19 23:57:37 2007 Nobuyoshi Nakada * dir.c (dir_inspect, dir_path, dir_tell): check for frozen and closed diff --git a/test/drb/drbtest.rb b/test/drb/drbtest.rb index d2c96f05c5..143d856a1e 100644 --- a/test/drb/drbtest.rb +++ b/test/drb/drbtest.rb @@ -179,7 +179,7 @@ module DRbCore def test_07_public_private_protected_missing assert_nothing_raised() { begin - @there.method_missing(:eval) + @there.method_missing(:eval, 'nil') rescue NoMethodError assert_match(/^private method \`eval\'/, $!.message) end @@ -208,7 +208,7 @@ module DRbCore assert_match(/^undefined method \`undefined_method_test\'/, $!.message) end } - assert_raises(SecurityError) do + assert_raises(DRb::DRbConnError) do @there.method_missing(:__send__, :to_s) end assert_equal(true, @there.missing)