Sha256: 00774ffd2b40c5b33c3d3d83c9c619397ab62e46a2d7d14c951d948aef236c2a

Contents?: true

Size: 529 Bytes

Versions: 83

Compression:

Stored size: 529 Bytes

Contents

describe :file_readable_real, :shared => true do
  before :each do
    @file = tmp('i_exist')
  end

  after :each do
    File.delete(@file) if File.exists?(@file)
  end

  it "returns true if named file is readable by the real user id of the process, otherwise false" do
    File.open(@file,'w') { @object.send(@method, @file).should == true }
  end
end

describe :file_readable_real_missing, :shared => true do
  it "returns false if the file does not exist" do
    @object.send(@method, 'fake_file').should == false
  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-1.4.2 spec/framework_spec/app/spec/shared/file/readable_real.rb
rhodes-1.4.1 spec/framework_spec/app/spec/shared/file/readable_real.rb
rhodes-1.4.0 spec/framework_spec/app/spec/shared/file/readable_real.rb