apigateway.feature 470 B

12345678910111213141516
  1. # language: en
  2. @apigateway @client
  3. Feature: Amazon API Gateway
  4. Scenario: Making a request
  5. When I call the "GetAccountRequest" API
  6. Then the request should be successful
  7. Scenario: Handing errors
  8. When I attempt to call the "GetRestApi" API with:
  9. | RestApiId | api123 |
  10. Then I expect the response error code to be "NotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. Invalid REST API identifier specified
  14. """