diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2020-01-22 10:37:09 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2020-01-22 10:47:24 +0100 |
commit | 19b76473a28b3e392c7acdfa7503f68d96702f24 (patch) | |
tree | b737a8707b12f5b56a80b2c6a475b8bb1e592425 /spec/runtime/executable_spec.rb | |
parent | 12b786888e630a6141273d28b74ec4b2e075cc44 (diff) | |
download | bundler-test/more_windows_improvements.tar.gz |
Trigger all current failurestest/more_windows_improvements
Diffstat (limited to 'spec/runtime/executable_spec.rb')
-rw-r--r-- | spec/runtime/executable_spec.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/runtime/executable_spec.rb b/spec/runtime/executable_spec.rb index e420594f52..dddd9cf600 100644 --- a/spec/runtime/executable_spec.rb +++ b/spec/runtime/executable_spec.rb @@ -9,7 +9,6 @@ RSpec.describe "Running bin/* commands" do end it "runs the bundled command when in the bundle" do - skip "exec format error" if Gem.win_platform? bundle! "binstubs rack" @@ -22,7 +21,6 @@ RSpec.describe "Running bin/* commands" do end it "allows the location of the gem stubs to be specified" do - skip "created in bin :/" if Gem.win_platform? bundle! "binstubs rack", :path => "gbin" @@ -34,7 +32,6 @@ RSpec.describe "Running bin/* commands" do end it "allows absolute paths as a specification of where to install bin stubs" do - skip "exec format error" if Gem.win_platform? bundle! "binstubs rack", :path => tmp("bin") @@ -48,14 +45,12 @@ RSpec.describe "Running bin/* commands" do end it "allows the name of the shebang executable to be specified" do - skip "not created with custom name :/" if Gem.win_platform? bundle! "binstubs rack", :shebang => "ruby-foo" expect(File.open(bundled_app("bin/rackup")).gets).to eq("#!/usr/bin/env ruby-foo\n") end it "runs the bundled command when out of the bundle" do - skip "exec format error" if Gem.win_platform? bundle! "binstubs rack" @@ -68,7 +63,6 @@ RSpec.describe "Running bin/* commands" do end it "works with gems in path" do - skip "exec format error" if Gem.win_platform? build_lib "rack", :path => lib_path("rack") do |s| s.executables = "rackup" @@ -104,7 +98,6 @@ RSpec.describe "Running bin/* commands" do end it "does not generate bin stubs if the option was not specified" do - skip "generated :/" if Gem.win_platform? bundle! "install" @@ -112,7 +105,6 @@ RSpec.describe "Running bin/* commands" do end it "allows you to stop installing binstubs", :bundler => "< 3" do - skip "delete permission error" if Gem.win_platform? bundle! "install --binstubs bin/" bundled_app("bin/rackup").rmtree @@ -157,7 +149,6 @@ RSpec.describe "Running bin/* commands" do end it "use BUNDLE_GEMFILE gemfile for binstub" do - skip "exec format error" if Gem.win_platform? # context with bin/bundler w/ default Gemfile bundle! "binstubs bundler" |