summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/stat/ino_spec.rb
blob: 42370aecb72973c1236554adca4e09099237459b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require_relative '../../../spec_helper'

describe "File::Stat#ino" do
  before :each do
    @file = tmp('i_exist')
    touch(@file) { |f| f.write "rubinius" }
  end

  after :each do
    rm_r @file
  end

  platform_is_not :windows do
    it "returns the ino of a File::Stat object" do
      st = File.stat(@file)
      st.ino.should be_kind_of(Integer)
      st.ino.should > 0
    end
  end

  platform_is :windows do
    it "returns BY_HANDLE_FILE_INFORMATION.nFileIndexHigh/Low of a File::Stat object" do
      st = File.stat(@file)
      st.ino.should be_kind_of(Integer)
      st.ino.should > 0
    end
  end
end