Sha256: a08c7dec3dbbce8df3138451c1d217072dd2d3314db17978b3868017d5f7a421
Contents?: true
Size: 502 Bytes
Versions: 83
Compression:
Stored size: 502 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../../spec_helper' describe "File::Stat#mode" do before :each do @file = tmp('i_exist') File.open(@file,'w'){|f| f.write 'rubinius'} File.chmod(0755, @file) end after :each do File.delete(@file) if File.exist?(@file) end it "should be able to determine the mode through a File::Stat object" do st = File.stat(@file) st.mode.is_a?(Integer).should == true st.mode.should == 33261 end end
Version data entries
83 entries across 83 versions & 1 rubygems