summaryrefslogtreecommitdiff
path: root/spec/bundler/plugins/hook_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/plugins/hook_spec.rb')
-rw-r--r--spec/bundler/plugins/hook_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/bundler/plugins/hook_spec.rb b/spec/bundler/plugins/hook_spec.rb
deleted file mode 100644
index 8bdf61a8ab..0000000000
--- a/spec/bundler/plugins/hook_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-RSpec.describe "hook plugins" do
- before do
- build_repo2 do
- build_plugin "before-install-plugin" do |s|
- s.write "plugins.rb", <<-RUBY
- Bundler::Plugin::API.hook "before-install-all" do |deps|
- puts "gems to be installed \#{deps.map(&:name).join(", ")}"
- end
- RUBY
- end
- end
-
- bundle "plugin install before-install-plugin --source file://#{gem_repo2}"
- end
-
- it "runs after a rubygem is installed" do
- install_gemfile <<-G
- source "file://#{gem_repo1}"
- gem "rake"
- gem "rack"
- G
-
- expect(out).to include "gems to be installed rake, rack"
- end
-end