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

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

  after :each do
    rm_r @file
  end

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