Sha256: bdebe7ece5df6fcbff9e39b0edb81ffa149b95c408d848344d00462d217b2cf3
Contents?: true
Size: 1.95 KB
Versions: 6
Compression:
Stored size: 1.95 KB
Contents
#RESPONSE_ATTRIBUTES='(status|headers|body)' Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? is( not)? (.*)(?<!:)$/) do |attribute, plural, path, negated, assertion| use_selector(Selector.new(dig_from_response(attribute, path, !plural.nil?), (!negated.nil?))) step "it is #{assertion}" end Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? is( not)? (.*)(?<=:)$/) do |attribute, plural, path, negated, assertion, multi| use_selector(Selector.new(dig_from_response(attribute, path, !plural.nil?), (!negated.nil?))) step "it is #{assertion}", multi.to_json end Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? does( not)? have any element that is (.*)(?<!:)$/) do |attribute, plural, path, negated, assertion| use_selector(AnySelector.new(dig_from_response(attribute, path, !plural.nil?), (!negated.nil?))) step "it is #{assertion}" end Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? does( not)? have any element that is (.*)(?<=:)$/) do |attribute, plural, path, negated, assertion, multi| use_selector(AnySelector.new(dig_from_response(attribute, path, !plural.nil?), (!negated.nil?))) step "it is #{assertion}", multi.to_json end #Would be negated with `not all' which would be equivalent to any(not ) but that's not readily supported Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? has elements which are all (.*)(?<!:)$/) do |attribute, plural, path, assertion| use_selector(AllSelector.new(dig_from_response(attribute, path, !plural.nil?), false)) step "it is #{assertion}" end Then(/^the value of the response #{RESPONSE_ATTRIBUTES}(?: child(ren)? `([^`]*)`)? has elements which are all (.*)(?<=:)$/) do |attribute, plural, path, assertion, multi| use_selector(AllSelector.new(dig_from_response(attribute, path, !plural.nil?), false)) step "it is #{assertion}", multi.to_json end
Version data entries
6 entries across 6 versions & 1 rubygems