Sha256: eabd34cda5d660b84fd794ce0bb11e1f1c491861bd0747f02dcf38d8c7cbb594

Contents?: true

Size: 937 Bytes

Versions: 52

Compression:

Stored size: 937 Bytes

Contents

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

ruby_version_is "1.9" do
  describe "File.absolute_path" do
    before(:each) do
      @abs = File.expand_path(__FILE__)
    end

    it "returns the argument if it's an absolute pathname" do
      File.absolute_path(@abs).should == @abs
    end

    #it "resolves paths relative to the current working directory" do
    #  Dir.chdir(File.dirname(@abs)) do |dir|
    #    File.absolute_path(File.expand_path('./' + File.basename(__FILE__))).should == @abs
    #  end
    #end

    #it "doesn't expand '~'" do
    #  File.absolute_path('~').should_not == File.expand_path('~')
    #end

    #it "accepts a second argument of a directory from which to resolve the path" do
    #  File.absolute_path(__FILE__, File.dirname(__FILE__)).should == @abs
    #end

    it "calls #to_path on its argument" do
      File.absolute_path(mock_to_path(@abs)).should == @abs
    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/file/absolute_path_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/file/absolute_path_spec.rb