diff options
author | Bundlerbot <bot@bundler.io> | 2018-12-30 03:20:18 +0000 |
---|---|---|
committer | Bundlerbot <bot@bundler.io> | 2018-12-30 03:20:18 +0000 |
commit | a63a39d738865665f714f179fe42dd10006da26d (patch) | |
tree | 60f9c6d2cfc50ac7eac5538dc3121e0e0099c594 /spec/runtime | |
parent | 7372d75243e6179f6258e2b5148fa89a7b64df8b (diff) | |
parent | 4937db20ef20823036d2a4e4be5b1ae6f0361755 (diff) | |
download | bundler-a63a39d738865665f714f179fe42dd10006da26d.tar.gz |
Merge #6856
6856: Test against Ruby 2.6 and RubyGems 3 r=colby-swandale a=segiddins
### What was the end-user problem that led to this PR?
The problem was we weren't testing our compatibility with the latest and greatest.
Co-authored-by: Samuel Giddins <segiddins@segiddins.me>
Co-authored-by: Colby Swandale <me@colby.fyi>
Diffstat (limited to 'spec/runtime')
-rw-r--r-- | spec/runtime/setup_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb index 7ea7d5ea0b..941c3d34e7 100644 --- a/spec/runtime/setup_spec.rb +++ b/spec/runtime/setup_spec.rb @@ -882,7 +882,9 @@ end end end - it "should successfully require 'bundler/setup'", :ruby_repo do + # Can't make this pass on 2.6 since the ruby standard library has the same $LOAD_PATH + # entry as bundler (since it's a default gem) + it "should successfully require 'bundler/setup'", :ruby_repo, :ruby => "< 2.6" do install_gemfile "" ruby <<-'R', :env => { "GEM_PATH" => symlinked_gem_home }, :no_lib => true |