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