diff options
author | David RodrÃguez <[email protected]> | 2020-06-14 19:42:31 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-06-18 19:14:15 +0900 |
commit | f217faf1da7dd38a5f110162adfb94c94782e06b (patch) | |
tree | 8f776bbc1ff6cee0a29ef27d5e140ca99a9415d9 /spec/bundler/commands/help_spec.rb | |
parent | 414b1485d6c87182e1797049346f8fff37904c40 (diff) |
[rubygems/rubygems] Better skip messages
https://github.com/rubygems/rubygems/commit/4f519638ae
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3212
Diffstat (limited to 'spec/bundler/commands/help_spec.rb')
-rw-r--r-- | spec/bundler/commands/help_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/commands/help_spec.rb b/spec/bundler/commands/help_spec.rb index 33a20dda94..feb5e283ea 100644 --- a/spec/bundler/commands/help_spec.rb +++ b/spec/bundler/commands/help_spec.rb @@ -28,7 +28,7 @@ RSpec.describe "bundle help" do end it "looks for a binary and executes it with --help option if it's named bundler-<task>" do - skip "obscure error" if Gem.win_platform? + skip "Could not find command testtasks, probably because not a windows friendly executable" if Gem.win_platform? File.open(tmp("bundler-testtasks"), "w", 0o755) do |f| f.puts "#!/usr/bin/env ruby\nputs ARGV.join(' ')\n" |