Sha256: 68702814482c03533dc1daf22a2348d15760198c169232714bbe327460826012

Contents?: true

Size: 583 Bytes

Versions: 83

Compression:

Stored size: 583 Bytes

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes'

describe "Method#name" do
  ruby_version_is '1.8.7' do
    it "returns the name of the method" do
      "abc".method(:upcase).name.should == :upcase
    end
    
    it "returns the name even when aliased" do
      obj = MethodSpecs::Methods.new
      obj.method(:foo).name.should == :foo
      obj.method(:bar).name.should == :bar
      obj.method(:bar).unbind.bind(obj).name.should == :bar
    end
  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-1.4.2 spec/framework_spec/app/spec/core/method/name_spec.rb
rhodes-1.4.1 spec/framework_spec/app/spec/core/method/name_spec.rb
rhodes-1.4.0 spec/framework_spec/app/spec/core/method/name_spec.rb