2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "The undef keyword" do
|
2017-05-27 17:55:02 -04:00
|
|
|
describe "undefines a method" do
|
|
|
|
before :each do
|
|
|
|
@undef_class = Class.new do
|
|
|
|
def meth(o); o; end
|
|
|
|
end
|
|
|
|
@obj = @undef_class.new
|
|
|
|
@obj.meth(5).should == 5
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
2017-05-27 17:55:03 -04:00
|
|
|
|
2017-05-27 17:55:02 -04:00
|
|
|
it "with an identifier" do
|
|
|
|
@undef_class.class_eval do
|
|
|
|
undef meth
|
|
|
|
end
|
|
|
|
lambda { @obj.meth(5) }.should raise_error(NoMethodError)
|
|
|
|
end
|
2017-05-27 17:55:03 -04:00
|
|
|
|
2017-05-27 17:55:02 -04:00
|
|
|
it "with a simple symbol" do
|
|
|
|
@undef_class.class_eval do
|
|
|
|
undef :meth
|
|
|
|
end
|
|
|
|
lambda { @obj.meth(5) }.should raise_error(NoMethodError)
|
|
|
|
end
|
2017-05-27 17:55:03 -04:00
|
|
|
|
2017-05-27 17:55:02 -04:00
|
|
|
it "with a single quoted symbol" do
|
|
|
|
@undef_class.class_eval do
|
|
|
|
undef :'meth'
|
|
|
|
end
|
|
|
|
lambda { @obj.meth(5) }.should raise_error(NoMethodError)
|
|
|
|
end
|
2017-05-27 17:55:03 -04:00
|
|
|
|
2017-05-27 17:55:02 -04:00
|
|
|
it "with a double quoted symbol" do
|
|
|
|
@undef_class.class_eval do
|
|
|
|
undef :"meth"
|
|
|
|
end
|
|
|
|
lambda { @obj.meth(5) }.should raise_error(NoMethodError)
|
|
|
|
end
|
2017-05-27 17:55:03 -04:00
|
|
|
|
2017-05-27 17:55:02 -04:00
|
|
|
it "with a interpolated symbol" do
|
|
|
|
@undef_class.class_eval do
|
|
|
|
undef :"#{'meth'}"
|
|
|
|
end
|
|
|
|
lambda { @obj.meth(5) }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
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 {
|
2017-05-07 08:05:36 -04:00
|
|
|
undef not_exist
|
2017-05-07 08:04:49 -04:00
|
|
|
}.should raise_error(NameError) { |e|
|
|
|
|
# a NameError and not a NoMethodError
|
|
|
|
e.class.should == NameError
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|