1# language: en
2@smoke @gamelift
3Feature: Amazon GameLift
4
5  Scenario: Making a request
6    When I call the "ListBuilds" API
7    Then the response should contain a "Builds"
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribePlayerSessions" API with:
11      | PlayerSessionId | psess-fakeSessionId |
12    Then I expect the response error code to be "NotFoundException"
13