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

@ -4,9 +4,12 @@ describe :file_readable, shared: true do
platform_is :windows do
@file2 = File.join(ENV["WINDIR"], "system32/drivers/etc/services").tr(File::SEPARATOR, File::ALT_SEPARATOR)
end
platform_is_not :windows do
platform_is_not :windows, :android do
@file2 = "/etc/passwd"
end
platform_is :android do
@file2 = "/system/bin/sh"
end
end
after :each do