Sha256: 14919de81692e6f6d9622876e1d62a30f4fbda8473a90fce16cb8bbf602f95c5
Contents?: true
Size: 592 Bytes
Versions: 52
Compression:
Stored size: 592 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Process.gid" do #platform_is_not :windows do # it "returns the correct gid for the user executing this process" do # current_gid_according_to_unix = `id -gr`.to_i # Process.gid.should == current_gid_according_to_unix # end #end it "also goes by Process::GID.rid" do Process::GID.rid.should == Process.gid end it "also goes by Process::Sys.getgid" do Process::Sys.getgid.should == Process.gid end end describe "Process.gid=" do it "needs to be reviewed for spec completeness" end
Version data entries
52 entries across 52 versions & 2 rubygems