cloudtrail.feature 453 B

12345678910111213141516
  1. # language: en
  2. @cloudtrail @client
  3. Feature: AWS CloudTrail
  4. Scenario: Making a request
  5. When I call the "DescribeTrails" API
  6. Then the response should contain a "trailList"
  7. Scenario: Handling errors
  8. When I attempt to call the "DeleteTrail" API with:
  9. | Name | faketrail |
  10. Then I expect the response error code to be "TrailNotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. Unknown trail
  14. """