1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/language/undef_spec.rb
svn 6bc742bc6d * remove trailing spaces, append newline at EOF.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:05:36 +00:00

39 lines
936 B
Ruby

require File.expand_path('../../spec_helper', __FILE__)
describe "The undef keyword" do
it "undefines a method" do
undef_class = Class.new do
def meth(o); o; end
end
obj = undef_class.new
obj.meth(5).should == 5
undef_class.class_eval do
undef meth
end
lambda { obj.meth(5) }.should raise_error(NoMethodError)
end
it "allows undefining multiple methods at a time" do
undef_multiple = Class.new do
def method1; end
def method2; :nope; end
undef :method1, :method2
end
obj = undef_multiple.new
obj.respond_to?(:method1).should == false
obj.respond_to?(:method2).should == false
end
it "raises a NameError when passed a missing name" do
Class.new do
lambda {
undef not_exist
}.should raise_error(NameError) { |e|
# a NameError and not a NoMethodError
e.class.should == NameError
}
end
end
end