Sha256: 1aad33a18efbaa8534ed322111c1b3dff1a33ba018e6074a93b378f5626f265e

Contents?: true

Size: 1.56 KB

Versions: 52

Compression:

Stored size: 1.56 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

ruby_version_is "1.9" do
  describe "Method#source_location" do
    before(:each) do
      @method = MethodSpecs::SourceLocation.method(:location)
    end

    it "returns nil for built-in methods" do
      File.method(:size).source_location.should be_nil
    end

    it "returns an Array" do
      @method.source_location.should be_an_instance_of(Array)
    end

    it "sets the first value to the path of the file in which the method was defined" do
      file = @method.source_location.first
      file.should be_an_instance_of(String)
      file.should == File.dirname(__FILE__) + '/fixtures/classes.rb'
    end

    it "sets the last value to a Fixnum representing the line on which the method was defined" do
      line = @method.source_location.last
      line.should be_an_instance_of(Fixnum)
      line.should == 5
    end

    it "returns the last place the method was defined" do
      MethodSpecs::SourceLocation.method(:redefined).source_location.last.should == 13
    end

    it "returns the location of the original method even if it was aliased" do
      MethodSpecs::SourceLocation.new.method(:aka).source_location.last.should == 17
    end

    it "works for define_method methods" do
      line = nil
      cls = Class.new do
        line = __LINE__ + 1
        define_method(:foo) { }
      end

      method = cls.new.method(:foo)
      method.source_location[0].should =~ /#{__FILE__}/
      method.source_location[1].should == line
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/method/source_location_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/method/source_location_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/method/source_location_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/method/source_location_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/method/source_location_spec.rb