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