Skip to content

Commit

Permalink
workaround_for_logical_operators_comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroDiez committed Nov 13, 2024
1 parent 9d7cf8d commit 9a46336
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Feature: CAMARA Carrier Billing Refund API, v0.1 - Operation retrieveRefunds
And the response header "x-correlator" has same value as the request header "x-correlator"
# The response has to comply with the generic response schema which is part of the spec
And the response body complies with the OAS schema at "/components/schemas/RefundArray"
And all the refunds returned have their property "$[*].refundCreationDate" >= "<creation_date>"
And only the refunds with their property "$[*].refundCreationDate" >= "<creation_date>" are returned
And all the refunds returned have their property "$[*].refundCreationDate" greater or equal than "<creation_date>"
And only the refunds with their property "$[*].refundCreationDate" greater or equal than "<creation_date>" are returned

Examples:
| creation_date |
Expand All @@ -98,8 +98,8 @@ Feature: CAMARA Carrier Billing Refund API, v0.1 - Operation retrieveRefunds
And the response header "x-correlator" has same value as the request header "x-correlator"
# The response has to comply with the generic response schema which is part of the spec
And the response body complies with the OAS schema at "/components/schemas/RefundArray"
And all the refunds returned have their property "$[*].refundCreationDate" <= "<creation_date>"
And only the refunds with their property "$[*].refundCreationDate" <= "<creation_date>" are returned
And all the refunds returned have their property "$[*].refundCreationDate" lower or equal than "<creation_date>"
And only the refunds with their property "$[*].refundCreationDate" lower or equal than "<creation_date>" are returned

Examples:
| creation_date |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ Feature: CAMARA Carrier Billing API, v0.3 - Operation retrievePayments
And the response header "x-correlator" has same value as the request header "x-correlator"
# The response has to comply with the generic response schema which is part of the spec
And the response body complies with the OAS schema at "/components/schemas/PaymentArray"
And all the payments returned have their property "$.paymentCreationDate" >= "<creation_date>"
And only the payments with their property "$.paymentCreationDate" >= "<creation_date>" are returned
And all the payments returned have their property "$.paymentCreationDate" greater or equal than "<creation_date>"
And only the payments with their property "$.paymentCreationDate" greater or equal than "<creation_date>" are returned

Examples:
| creation_date |
Expand All @@ -97,8 +97,8 @@ Feature: CAMARA Carrier Billing API, v0.3 - Operation retrievePayments
And the response header "x-correlator" has same value as the request header "x-correlator"
# The response has to comply with the generic response schema which is part of the spec
And the response body complies with the OAS schema at "/components/schemas/PaymentArray"
And all the payments returned have their property "$.paymentCreationDate" <= "<creation_date>"
And only the payments with their property "$.paymentCreationDate" <= "<creation_date>" are returned
And all the payments returned have their property "$.paymentCreationDate" lower or equal than "<creation_date>"
And only the payments with their property "$.paymentCreationDate" lower or equal than "<creation_date>" are returned

Examples:
| creation_date |
Expand Down

0 comments on commit 9a46336

Please sign in to comment.