You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect(Pact.configuration.output_stream).toreceive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: latest master, latest prod")
37
+
subject_with_rescue
38
+
end
39
+
end
40
+
41
+
context"with a fallback tag"do
42
+
let(:tags){[{name: "branch",fallback: "master"}]}
43
+
44
+
it"logs a message"do
45
+
expect(Pact.configuration.output_stream).toreceive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: latest branch (or master if not found)")
46
+
subject_with_rescue
47
+
end
48
+
end
49
+
50
+
context"when all: true"do
51
+
let(:tags){[{name: "prod",all: true}]}
52
+
53
+
it"logs a message"do
54
+
expect(Pact.configuration.output_stream).toreceive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: all prod")
0 commit comments