Sha256: 86e06b18f1bb1314b7fdf2d4ce50e8d905b18b26b22f268c4b7c2b0e92d6bb37
Contents?: true
Size: 412 Bytes
Versions: 83
Compression:
Stored size: 412 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Process.euid" do it "returns the effective user ID for this process" do Process.euid.class.should == Fixnum end it "also goes by Process::UID.eid" do Process::UID.eid.should == Process.euid end it "also goes by Process::Sys.geteuid" do Process::Sys.geteuid.should == Process.euid end end
Version data entries
83 entries across 83 versions & 1 rubygems