require_relative '../../spec_helper'
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
e>
IO::Buffer for scheduler interface.2021-11-10T06:21:05+00:00Samuel Williamssamuel.williams@oriontransfer.co.nz2021-07-02T10:41:16+00:004b8903421828cb9d4de139180563ae8d8f04e1ab
Add scheduler hook `Addrinfo.getaddrinfo`. (#4375)2021-06-14T04:21:08+00:00Samuel Williamssamuel.williams@oriontransfer.co.nz2021-06-14T04:21:08+00:002792acc8f29c6ee1d04b57b7b70d43519a0ceda8
Co-authored-by: Bruno Sutic <code@brunosutic.com>
Co-authored-by: Bruno Sutic <code@brunosutic.com>
Update method name and add documentation.2021-03-30T05:38:42+00:00Samuel Williamssamuel.williams@oriontransfer.co.nz2020-12-26T09:09:49+00:00511acba4aeb3e35cf025a8a6cde4241b7b5167f3