aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/stat/dev_spec.rb
blob: e953fcaa582c6d080663f7dce588b12b92cff061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../../spec_helper'

describe "File::Stat#dev" 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 on which the file exists" do
    File.stat(@name).dev.should be_kind_of(Integer)
  end
end