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
Then(/^the (?:fix|FIX) messages should include a message with the(?: tag)? "(.*)"$/) do |path|
expect(@message_scope).not_to be_nil, "No message scope defined"
found = false
error_accum = ""
index = 1
@message_scope.each do |m|
@message = m
begin
steps %Q{
When I inspect the #{index}th FIX message
And the FIX message should have "#{path}"
}
found = true
rescue Exception => e
error_accum << "\n#{m.to_s.gsub!(/\001/, '|')}\n #{e}"
end
index += 1
end
expect(found).to be(true), "Tag not included in FIX messages\n #{error_accum}"
end
The text was updated successfully, but these errors were encountered:
Something similar to:
The text was updated successfully, but these errors were encountered: