aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_undef.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_undef.rb')
-rw-r--r--test/ruby/test_undef.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/ruby/test_undef.rb b/test/ruby/test_undef.rb
new file mode 100644
index 0000000000..e1c98076c0
--- /dev/null
+++ b/test/ruby/test_undef.rb
@@ -0,0 +1,37 @@
+require 'test/unit'
+
+class TestUndef < Test::Unit::TestCase
+ class Undef0
+ def foo
+ "foo"
+ end
+ undef foo
+ end
+
+ class Undef1
+ def bar
+ "bar"
+ end
+ end
+
+ class Undef2 < Undef1
+ undef bar
+ end
+
+ def test_undef
+ x = Undef0.new
+ assert_raise(NoMethodError) { x.foo }
+ y = Undef1.new
+ assert_equal "bar", y.bar
+ z = Undef2.new
+ assert_raise(NoMethodError) { z.foo }
+ end
+
+ def test_special_const_undef
+ assert_raise(TypeError) do
+ 1.instance_eval do
+ undef to_s
+ end
+ end
+ end
+end