1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
module ModuleSpecs
class NoInheritance
def method_to_remove; 1; end
remove_method :method_to_remove
end
class Parent
def method_to_remove; 1; end
end
class Child < Parent
def method_to_remove; 2; end
remove_method :method_to_remove
end
class First
def method_to_remove; 1; end
end
class Second < First
def method_to_remove; 2; end
end
end
describe "Module#remove_method" do
it "removes the method from a class" do
x = ModuleSpecs::NoInheritance.new
x.respond_to?(:method_to_remove).should == false
end
it "removes method from subclass, but not parent" do
x = ModuleSpecs::Child.new
x.respond_to?(:method_to_remove).should == true
x.method_to_remove.should == 1
end
it "raises a NameError when attempting to remove method further up the inheritance tree" do
lambda {
class Third < ModuleSpecs::Second
remove_method :method_to_remove
end
}.should raise_error(NameError)
end
it "raises a NameError when attempting to remove a missing method" do
lambda {
class Third < ModuleSpecs::Second
remove_method :blah
end
}.should raise_error(NameError)
end
ruby_version_is ""..."1.9" do
it "raises TypeError when frozen" do
c = Class.new { def method_to_remove; end }
c.freeze
lambda { c.send(:remove_method, :method_to_remove) }.should raise_error(TypeError)
end
end
ruby_version_is "1.9" do
it "raises RuntimeError when frozen" do
c = Class.new { def method_to_remove; end }
c.freeze
lambda { c.send(:remove_method, :method_to_remove) }.should raise_error(RuntimeError)
end
end
end
|