1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

spec/ruby: skip the specs that use /etc/passwd on Android

There is no /etc/passwd on Android
This commit is contained in:
Yusuke Endoh 2020-02-13 23:06:33 +09:00
parent ca53ab581b
commit c6ebbbd38b
4 changed files with 7 additions and 4 deletions

View file

@ -8,7 +8,7 @@ describe :file_writable, shared: true do
end
it "returns true if named file is writable by the effective user id of the process, otherwise false" do
platform_is_not :windows do
platform_is_not :windows, :android do
as_user do
@object.send(@method, "/etc/passwd").should == false
end