Sha256: 7fc98f670812786dfbd5c183b7f02178aa7ffa28c8809fa8324e133f4dbd4212
Contents?: true
Size: 831 Bytes
Versions: 83
Compression:
Stored size: 831 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes' describe "UnboundMethod#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 = UnboundMethodSpecs::Methods.new obj.method(:foo).owner.should == UnboundMethodSpecs::Methods obj.method(:bar).owner.should == UnboundMethodSpecs::Methods end it "returns the class/module it was defined in" do UnboundMethodSpecs::C.new.method(:baz).owner.should == UnboundMethodSpecs::A UnboundMethodSpecs::Methods.new.method(:from_mod).owner.should == UnboundMethodSpecs::Mod end end end
Version data entries
83 entries across 83 versions & 1 rubygems