Sha256: c6444cf990cea5a94c600d5057eabfd731a87a32bb147788256f7a9de5d4a399
Contents?: true
Size: 569 Bytes
Versions: 52
Compression:
Stored size: 569 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "File#path" do before :each do @name = tmp("file_path") end after :each do rm_r @name end it "returns the pathname used to create file as a string" do File.open(@name,'w') { |file| file.path.should == @name } end end describe "File.path" do before :each do @name = tmp("file_path") end after :each do rm_r @name end ruby_version_is "1.9.1" do it "returns the full path for the given file" do File.path(@name).should == @name end end end
Version data entries
52 entries across 52 versions & 2 rubygems