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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "Kernel.respond_to?" do
it "indicates if a singleton object responds to a particular message" do
class KernelSpecs::Foo; def self.bar; 'done'; end; end
KernelSpecs::Foo.respond_to?(:bar).should == true
KernelSpecs::Foo.respond_to?(:baz).should == false
end
end
describe "Kernel#respond_to?" do
before :each do
@a = KernelSpecs::A.new
end
it "returns false if the given method was undefined" do
@a.respond_to?(:undefed_method).should == false
@a.respond_to?("undefed_method").should == false
end
it "returns true if obj responds to the given public method" do
@a.respond_to?(:pub_method).should == true
@a.respond_to?("pub_method").should == true
end
it "throws a type error if argument can't be coerced into a Symbol" do
lambda { @a.respond_to?(Object.new) }.should raise_error(TypeError)
end
ruby_version_is ""..."2.0" do
it "returns true if obj responds to the given protected method" do
@a.respond_to?(:protected_method).should == true
@a.respond_to?("protected_method").should == true
end
end
ruby_version_is "2.0" do
it "returns false if obj responds to the given protected method" do
@a.respond_to?(:protected_method).should == false
@a.respond_to?("protected_method").should == false
end
end
it "returns false if obj responds to the given private method" do
@a.respond_to?(:private_method).should == false
@a.respond_to?("private_method").should == false
end
it "returns true if obj responds to the given protected method (include_private = true)" do
@a.respond_to?(:protected_method, true).should == true
@a.respond_to?("protected_method", true).should == true
end
ruby_version_is ""..."2.0" do
it "returns true if obj responds to the given protected method (include_private = false)" do
@a.respond_to?(:protected_method, false).should == true
@a.respond_to?("protected_method", false).should == true
end
end
ruby_version_is "2.0" do
it "returns false if obj responds to the given protected method (include_private = false)" do
@a.respond_to?(:protected_method, false).should == false
@a.respond_to?("protected_method", false).should == false
end
end
it "returns false even if obj responds to the given private method (include_private = false)" do
@a.respond_to?(:private_method, false).should == false
@a.respond_to?("private_method", false).should == false
end
it "returns true if obj responds to the given private method (include_private = true)" do
@a.respond_to?(:private_method, true).should == true
@a.respond_to?("private_method", true).should == true
end
it "does not change method visibility when finding private method" do
KernelSpecs::VisibilityChange.respond_to?(:new, false).should == false
KernelSpecs::VisibilityChange.respond_to?(:new, true).should == true
lambda { KernelSpecs::VisibilityChange.new }.should raise_error(NoMethodError)
end
it "indicates if an object responds to a particular message" do
class KernelSpecs::Foo; def bar; 'done'; end; end
KernelSpecs::Foo.new.respond_to?(:bar).should == true
KernelSpecs::Foo.new.respond_to?(:invalid_and_silly_method_name).should == false
end
end
|