blob: fe411a8a6ffafc24cbcdb7cc691dde525229cabc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# frozen_string_literal: true
RSpec.describe "bundle update" do
let(:config) {}
before do
gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack', "< 1.0"
gem 'thin'
G
bundle! "config #{config}" if config
bundle! :install
end
shared_examples "a config observer" do
context "when ignore post-install messages for gem is set" do
let(:config) { "ignore_messages.rack true" }
it "doesn't display gem's post-install message" do
expect(out).not_to include("Rack's post install message")
end
end
context "when ignore post-install messages for all gems" do
let(:config) { "ignore_messages true" }
it "doesn't display any post-install messages" do
expect(out).not_to include("Post-install message")
end
end
end
shared_examples "a post-install message outputter" do
it "should display post-install messages for updated gems" do
expect(out).to include("Post-install message from rack:")
expect(out).to include("Rack's post install message")
end
it "should not display the post-install message for non-updated gems" do
expect(out).not_to include("Thin's post install message")
end
end
context "when listed gem is updated" do
before do
gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack'
gem 'thin'
G
bundle! :update, :all => true
end
it_behaves_like "a post-install message outputter"
it_behaves_like "a config observer"
end
context "when dependency triggers update" do
before do
gemfile <<-G
source "file://#{gem_repo1}"
gem 'rack-obama'
gem 'thin'
G
bundle! :update, :all => true
end
it_behaves_like "a post-install message outputter"
it_behaves_like "a config observer"
end
end
|