summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-01-02 17:40:20 -0600
committerSamuel Giddins <segiddins@segiddins.me>2017-01-02 17:40:20 -0600
commit84fb58a7ad466bc3d41dccd01e718edb27a21340 (patch)
tree33343d4f7105408a3a22caa61369bef6c6f1a5bb /spec
parentecae8bfff76854c2bf27339240f7044758533ef9 (diff)
downloadbundler-84fb58a7ad466bc3d41dccd01e718edb27a21340.tar.gz
[CLI::Open] Support exiting when selecting gemseg-open-exit
Diffstat (limited to 'spec')
-rw-r--r--spec/commands/open_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/commands/open_spec.rb b/spec/commands/open_spec.rb
index 5507398382..3bf2983f36 100644
--- a/spec/commands/open_spec.rb
+++ b/spec/commands/open_spec.rb
@@ -67,6 +67,13 @@ describe "bundle open" do
expect(out).to match(/bundler_editor #{default_bundle_path('gems', 'activerecord-2.3.2')}\z/)
end
+ it "allows selecting exit from many match gems" do
+ env = { "EDITOR" => "echo editor", "VISUAL" => "echo visual", "BUNDLER_EDITOR" => "echo bundler_editor" }
+ bundle! "open active", :env => env do |input, _, _|
+ input.puts "0"
+ end
+ end
+
it "performs an automatic bundle install" do
gemfile <<-G
source "file://#{gem_repo1}"