diff options
Diffstat (limited to 'spec/commands/package_spec.rb')
-rw-r--r-- | spec/commands/package_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/commands/package_spec.rb b/spec/commands/package_spec.rb index d87ebc56bf..d890afc995 100644 --- a/spec/commands/package_spec.rb +++ b/spec/commands/package_spec.rb @@ -10,7 +10,7 @@ describe "bundle package" do bundle "package --gemfile=NotGemfile" - ENV['BUNDLE_GEMFILE'] = "NotGemfile" + ENV["BUNDLE_GEMFILE"] = "NotGemfile" should_be_installed "rack 1.0.0" end end @@ -22,7 +22,7 @@ describe "bundle package" do gem 'rack' D - bundle "package --path=#{bundled_app('test')}" + bundle "package --path=#{bundled_app("test")}" should_be_installed "rack 1.0.0" expect(bundled_app("test/vendor/cache/")).to exist @@ -95,7 +95,7 @@ describe "bundle install with gem sources" do G bundle :pack - build_gem "rack", "1.0.0", :path => bundled_app('vendor/cache') do |s| + build_gem "rack", "1.0.0", :path => bundled_app("vendor/cache") do |s| s.write "lib/rack.rb", "raise 'omg'" end |