Sha256: 0cc98eeab3326de301e312dd657af3217f18508dd87196da260f4da9dcc4a86b
Contents?: true
Size: 350 Bytes
Versions: 52
Compression:
Stored size: 350 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) describe 'File::Stat#rdev' do before :each do @name = tmp("file.txt") touch(@name) end after :each do rm_r @name end it "returns the number of the device this file represents which the file exists" do File.stat(@name).rdev.should be_kind_of(Integer) end end
Version data entries
52 entries across 52 versions & 2 rubygems