1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/etc/sysconf_spec.rb
eregon 8180b5bfc0 Update to ruby/spec@09fa86c
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-08-27 14:25:00 +00:00

31 lines
1.3 KiB
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
require 'etc'
platform_is_not :windows do
describe "Etc.sysconf" do
def should_be_integer_or_nil(value)
if value.nil?
value.should == nil
else
value.should be_kind_of(Integer)
end
end
it "returns the value of POSIX.1 system configuration variables" do
Etc.sysconf(Etc::SC_ARG_MAX).should be_kind_of(Integer)
should_be_integer_or_nil(Etc.sysconf(Etc::SC_CHILD_MAX))
Etc.sysconf(Etc::SC_HOST_NAME_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_LOGIN_NAME_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_NGROUPS_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_CLK_TCK).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_OPEN_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_PAGESIZE).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_RE_DUP_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_STREAM_MAX).should be_kind_of(Integer)
should_be_integer_or_nil(Etc.sysconf(Etc::SC_SYMLOOP_MAX))
Etc.sysconf(Etc::SC_TTY_NAME_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_TZNAME_MAX).should be_kind_of(Integer)
Etc.sysconf(Etc::SC_VERSION).should be_kind_of(Integer)
end
end
end