1# language: en
2@smoke @storagegateway
3Feature: AWS Storage Gateway
4
5  Scenario: Making a request
6    When I call the "ListGateways" API
7    Then the value at "Gateways" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "ListVolumes" API with:
11      | GatewayARN | fake_gateway_that_meets_the_minimum_length_restriction |
12    Then I expect the response error code to be "InvalidGatewayRequestException"
13