File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,15 @@ def app
17
17
end
18
18
19
19
module ClassMethods
20
+ EMPTY_ARRAY = [ ] . freeze
20
21
21
22
include ::RSpec ::Core ::DSL
22
23
23
24
def honour_pactfile pact_uri , pact_json , options
24
25
Pact . configuration . output_stream . puts "INFO: Reading pact at #{ pact_uri } "
25
- Pact . configuration . output_stream . puts ( "DEBUG: #{ pact_uri . metadata [ :inclusion_reason ] } " ) if pact_uri . metadata [ :inclusion_reason ]
26
- Pact . configuration . output_stream . puts ( "DEBUG: #{ pact_uri . metadata [ :pending_reason ] } " ) if pact_uri . metadata [ :pending_reason ]
26
+ ( pact_uri . metadata [ :notices ] || EMPTY_ARRAY ) . each do | notice |
27
+ Pact . configuration . output_stream . puts ( "DEBUG: #{ notice } " )
28
+ end
27
29
Pact . configuration . output_stream . puts "DEBUG: Filtering interactions by: #{ options [ :criteria ] } " if options [ :criteria ] && options [ :criteria ] . any?
28
30
consumer_contract = Pact ::ConsumerContract . from_json ( pact_json )
29
31
suffix = pact_uri . metadata [ :pending ] ? " [PENDING]" : ""
You can’t perform that action at this time.
0 commit comments