aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/file/stat/uid_spec.rb
blob: 75be97c2348a99ad5eb4b8e699958a7536e58da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../../../../spec_helper', __FILE__)

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

  after :each do
    rm_r @file
  end

  it "returns the owner attribute of a File::Stat object" do
    st = File.stat(@file)
    st.uid.is_a?(Integer).should == true
    st.uid.should == Process.uid
  end
end