Sha256: 745bf14355701ecc576a42a2cf59902acd3ee0c1ed298b9445259f9f27f8a915
Contents?: true
Size: 472 Bytes
Versions: 52
Compression:
Stored size: 472 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Process.egid" do it "returns the effective group ID for this process" do Process.egid.should be_kind_of(Integer) end it "also goes by Process::GID.eid" do Process::GID.eid.should == Process.egid end it "also goes by Process::Sys.getegid" do Process::Sys.getegid.should == Process.egid end end describe "Process.egid=" do it "needs to be reviewed for spec completeness" end
Version data entries
52 entries across 52 versions & 2 rubygems