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