diff options
| author | Yusuke Endoh <mame@ruby-lang.org> | 2020-02-13 23:04:15 +0900 |
|---|---|---|
| committer | Yusuke Endoh <mame@ruby-lang.org> | 2020-02-13 23:04:15 +0900 |
| commit | ca53ab581b414ba86cfb5a6d51ca9a372c4ffcf8 (patch) | |
| tree | dcab6436f8b1f4f866616c6206874c1b3f9de118 | |
| parent | 02233e171ce7a5243f19746148c3d59e1ad7dd33 (diff) | |
spec/ruby/library/etc/confstr_spec.rb: skip on Android
There seems to be no _CS_PATH on Android.
| -rw-r--r-- | spec/ruby/library/etc/confstr_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/etc/confstr_spec.rb b/spec/ruby/library/etc/confstr_spec.rb index 0c922a3a77..41a970a918 100644 --- a/spec/ruby/library/etc/confstr_spec.rb +++ b/spec/ruby/library/etc/confstr_spec.rb @@ -1,7 +1,7 @@ require File.expand_path('../../../spec_helper', __FILE__) require 'etc' -platform_is_not :windows do +platform_is_not :windows, :android do describe "Etc.confstr" do it "returns a String for Etc::CS_PATH" do Etc.confstr(Etc::CS_PATH).should be_an_instance_of(String) |
