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.
1 parent 675c61e commit 7201382Copy full SHA for 7201382
bundler/spec/bundler/plugin/installer_spec.rb
@@ -109,6 +109,13 @@
109
expect(result["re-plugin"].full_gem_path).
110
to eq(global_plugin_gem("re-plugin-1.0").to_s)
111
end
112
+
113
+ it "loads env plugins" do
114
+ Bundler.settings # initialize it before we have to touch rubygems.ext_lock
115
+ expect(Bundler).to receive_message_chain("rubygems.load_env_plugins")
116
+ expect(result["re-plugin"].full_gem_path).
117
+ to eq(global_plugin_gem("re-plugin-1.0").to_s)
118
+ end
119
120
121
context "multiple plugins" do
0 commit comments