blob: 3bba65bc82a06f26e09f2e4574135ed0f3cf1138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require_relative '../../../spec_helper'
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
|