summaryrefslogtreecommitdiff
path: root/spec/bundler/plugin_spec.rb
diff options
context:
space:
mode:
authorAsutosh Palai <asupalai@gmail.com>2016-06-07 17:36:07 +0530
committerAsutosh Palai <asupalai@gmail.com>2016-06-07 18:58:56 +0530
commit4a1baea541298628d47b04520f23f9b3c6af0265 (patch)
treed21d7e9ca15dccdd05d5adb5036066766f670d40 /spec/bundler/plugin_spec.rb
parentcc6b93bdb8ce39d27b380e527ec6b9ba5007e9cb (diff)
downloadbundler-4a1baea541298628d47b04520f23f9b3c6af0265.tar.gz
Minor corrections
Diffstat (limited to 'spec/bundler/plugin_spec.rb')
-rw-r--r--spec/bundler/plugin_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/plugin_spec.rb b/spec/bundler/plugin_spec.rb
index 166c1efbac..a46e5550c1 100644
--- a/spec/bundler/plugin_spec.rb
+++ b/spec/bundler/plugin_spec.rb
@@ -63,7 +63,7 @@ describe Bundler::Plugin do
allow(definition).to receive(:dependencies) { [] }
allow(installer).to receive(:install_definition).never
- subject.eval_gemfile(gemfile)
+ subject.gemfile_install(gemfile)
end
it "should validate and register the plugins" do
@@ -77,7 +77,7 @@ describe Bundler::Plugin do
expect(subject).to receive(:validate_plugin!).twice
expect(subject).to receive(:register_plugin).twice
- subject.eval_gemfile(gemfile)
+ subject.gemfile_install(gemfile)
end
end