iam.feature 479 B

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