Sha256: dd0e7e6b2cc0207a643993cbf84804fb5a0c2a088b9fd68b9eb1b8bd39b9ceb2
Contents?: true
Size: 772 Bytes
Versions: 83
Compression:
Stored size: 772 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes' describe "Method#owner" do ruby_version_is '1.8.7' do it "returns the owner of the method" do "abc".method(:upcase).owner.should == String end it "returns the name even when aliased" do obj = MethodSpecs::Methods.new obj.method(:foo).owner.should == MethodSpecs::Methods obj.method(:bar).owner.should == MethodSpecs::Methods end it "returns the class/module it was defined in" do MethodSpecs::C.new.method(:baz).owner.should == MethodSpecs::A MethodSpecs::MySuper.new.method(:bar).owner.should == MethodSpecs::MyMod end end end
Version data entries
83 entries across 83 versions & 1 rubygems