File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,12 @@ def overwritten?
175
175
def overwritten = overwritten
176
176
@overwritten = overwritten
177
177
end
178
+
179
+ def inherited_verification_message
180
+ if @line [ :verification_executed_at ] && @line [ :pact_created_at ] > @line [ :verification_executed_at ]
181
+ "The verification date is before the pact publication date because this verification has been inherited from a previously verified pact with identical content."
182
+ end
183
+ end
178
184
end
179
185
end
180
186
end
Original file line number Diff line number Diff line change 118
118
%a{href: tag.url}
119
119
.tag.label.label-default
120
120
= tag.name
121
- %td.pact-published{'data-sort-value' => line.pact_published_order}
121
+ %td.pact-published{'data-sort-value' => line.pact_published_order, " title " : line.inherited_verification_message, " data-toggle " : " tooltip " }
122
122
%a{href: line.pact_publication_date_url}
123
123
- if options.all_rows_checked
124
124
= " #{line.pact_publication_date} (revision #{line.pact_revision_number})"
142
142
%a{href: tag.url}
143
143
.tag.label.label-default
144
144
= tag.name
145
- %td.verification-result{class: line.verification_status_class}
145
+ %td.verification-result{class: line.verification_status_class, " title " : line.inherited_verification_message, " data-toggle " : " tooltip " }
146
146
%a{href: line.verification_status_url}
147
147
- if options.all_rows_checked
148
148
= " #{line.verification_status} (number #{line.number})"
You can’t perform that action at this time.
0 commit comments