1# language: en
2@smoke @glacier
3Feature: Amazon Glacier
4
5  Scenario: Making a request
6    When I call the "ListVaults" API
7    Then the response should contain a "VaultList"
8
9  Scenario: Handling errors
10    When I attempt to call the "ListVaults" API with:
11      | accountId | abcmnoxyz |
12    Then I expect the response error code to be "UnrecognizedClientException"
13