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/group_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

27 lines
593 B
Ruby

require_relative '../../spec_helper'
require_relative 'shared/windows'
require 'etc'
describe "Etc.group" do
it_behaves_like :etc_on_windows, :group
platform_is_not :windows, :android do
it "returns a Etc::Group struct" do
group = Etc.group
begin
group.should be_an_instance_of(Etc::Group)
ensure
Etc.endgrent
end
end
it "raises a RuntimeError for parallel iteration" do
proc {
Etc.group do | group |
Etc.group do | group2 |
end
end
}.should raise_error(RuntimeError)
end
end
end