codedeploy.feature 516 B

12345678910111213141516
  1. # language: en
  2. @codedeploy @client
  3. Feature: Amazon CodeDeploy
  4. Scenario: Making a request
  5. When I call the "ListApplications" API
  6. Then the value at "applications" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetDeployment" API with:
  9. | deploymentId | d-USUAELQEX |
  10. Then I expect the response error code to be "DeploymentDoesNotExistException"
  11. And I expect the response error message to include:
  12. """
  13. The deployment d-USUAELQEX could not be found
  14. """