glacier.feature 483 B

12345678910111213141516
  1. # language: en
  2. @glacier @client
  3. Feature: Amazon Glacier
  4. Scenario: Making a request
  5. When I call the "ListVaults" API
  6. Then the response should contain a "VaultList"
  7. Scenario: Handling errors
  8. When I attempt to call the "ListVaults" API with:
  9. | accountId | abcmnoxyz |
  10. Then I expect the response error code to be "UnrecognizedClientException"
  11. And I expect the response error message to include:
  12. """
  13. No account found for the given parameters
  14. """