summaryrefslogtreecommitdiff
path: root/spec/bundler/runtime/setup_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/runtime/setup_spec.rb')
-rw-r--r--spec/bundler/runtime/setup_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/runtime/setup_spec.rb b/spec/bundler/runtime/setup_spec.rb
index 9ff15f83b0..85f86db2d1 100644
--- a/spec/bundler/runtime/setup_spec.rb
+++ b/spec/bundler/runtime/setup_spec.rb
@@ -670,7 +670,7 @@ RSpec.describe "Bundler.setup" do
gem "rack"
G
- run! <<-R
+ run <<-R
File.open(File.join(Gem.dir, "specifications", "broken.gemspec"), "w") do |f|
f.write <<-RUBY
# -*- encoding: utf-8 -*-
@@ -685,7 +685,7 @@ end
end
R
- run! <<-R
+ run <<-R
puts "WIN"
R
@@ -722,7 +722,7 @@ end
gem "with_man"
G
- run! "puts ENV['MANPATH']"
+ run "puts ENV['MANPATH']"
expect(out).to eq("#{default_bundle_path("gems/with_man-1.0/man")}#{File::PATH_SEPARATOR}/foo")
end
end
@@ -736,7 +736,7 @@ end
gem "with_man"
G
- run! "puts ENV['MANPATH']"
+ run "puts ENV['MANPATH']"
expect(out).to eq(default_bundle_path("gems/with_man-1.0/man").to_s)
end
end