aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-25 07:28:02 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-25 07:28:02 +0900
commit1857b4427817755bb0879ca67e1b2f3276f95d4c (patch)
tree2a1f64ac6bb954e668944ae10e8d2c506c60123b /spec
parentda0a0bae8b50087d140309b27eb4d4b4776c27e4 (diff)
downloadruby-1857b4427817755bb0879ca67e1b2f3276f95d4c.tar.gz
Merge Bundler 2.1.2 from bundler/bundler.
[Misc #16449][ruby-core:96458]
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/runtime/setup_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/bundler/runtime/setup_spec.rb b/spec/bundler/runtime/setup_spec.rb
index befc5f9d09..39240b7404 100644
--- a/spec/bundler/runtime/setup_spec.rb
+++ b/spec/bundler/runtime/setup_spec.rb
@@ -1344,5 +1344,11 @@ end
expect(last_command.stdboth).not_to include "FAIL"
expect(err).to include "private method `require'"
end
+
+ it "takes care of requiring rubygems" do
+ sys_exec("#{Gem.ruby} -I#{lib_dir} -e \"puts require('bundler/setup')\"", "RUBYOPT" => "--disable=gems")
+
+ expect(last_command.stdboth).to eq("true")
+ end
end
end