We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
install_gemfile
1 parent f8e002a commit 2690d21Copy full SHA for 2690d21
spec/bundler/commands/install_spec.rb
@@ -30,22 +30,20 @@
30
end
31
32
it "does not create ./.bundle by default" do
33
- gemfile <<-G
+ install_gemfile <<-G
34
source "https://gem.repo1"
35
gem "myrack"
36
G
37
38
- bundle :install # can't use install_gemfile since it sets retry
39
expect(bundled_app(".bundle")).not_to exist
40
41
42
it "does not create ./.bundle by default when installing to system gems" do
43
+ install_gemfile <<-G, env: { "BUNDLE_PATH__SYSTEM" => "true" }
44
45
46
47
48
- bundle :install, env: { "BUNDLE_PATH__SYSTEM" => "true" } # can't use install_gemfile since it sets retry
49
50
51
0 commit comments