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:
parent
ca53ab581b
commit
c6ebbbd38b
4 changed files with 7 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue