Sha256: 172526cf1d7ebe5dcc85b16063a6f1195dda65e951581c3734282c5f78df562a
Contents?: true
Size: 481 Bytes
Versions: 83
Compression:
Stored size: 481 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Process.maxgroups" do it "returns the maximum number of gids allowed in the supplemental group access list" do Process.maxgroups.class.should == Fixnum end it "sets the maximum number of gids allowed in the supplemental group access list" do n = Process.maxgroups Process.maxgroups = n + 1 Process.maxgroups.should == n + 1 Process.maxgroups = n end end
Version data entries
83 entries across 83 versions & 1 rubygems