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/getgrnam_spec.rb
Yusuke Endoh 09a042ae04 spec/ruby/library/etc/: skip the specs related to group on Android
User/group system on Android seems different from normal Linux.
2020-02-13 23:11:28 +09:00

30 lines
699 B
Ruby

require_relative '../../spec_helper'
require 'etc'
platform_is :windows do
describe "Etc.getgrnam" do
it "returns nil" do
Etc.getgrnam(1).should == nil
Etc.getgrnam(nil).should == nil
Etc.getgrnam('nil').should == nil
end
end
end
platform_is_not :windows, :android do
describe "Etc.getgrnam" do
it "returns a Etc::Group struct instance for the given group" do
gr_name = Etc.getgrent.name
Etc.endgrent
gr = Etc.getgrnam(gr_name)
gr.is_a?(Etc::Group).should == true
end
it "only accepts strings as argument" do
-> {
Etc.getgrnam(123)
Etc.getgrnam(nil)
}.should raise_error(TypeError)
end
end
end