1# language: en
2@iam @client
3Feature: AWS Identity and Access Management
4
5  Scenario: Making a request
6    When I call the "ListUsers" API
7    Then the value at "Users" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "GetUser" API with:
11      | UserName | fake_user |
12    Then I expect the response error code to be "NoSuchEntity"
13    And I expect the response error message to include:
14    """
15    The user with name fake_user cannot be found.
16    """
17