Sha256: 74fdfc097903fb2b1e262b341e49ee4ced184a5a0353b761e5cbb835038fa1e1
Contents?: true
Size: 713 Bytes
Versions: 52
Compression:
Stored size: 713 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes', __FILE__) 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
52 entries across 52 versions & 2 rubygems