python-botocore/tests/acceptance/features/smoke/cloudtrail/cloudtrail.feature
2015-11-24 20:34:53 +09:00

17 lines
445 B
Gherkin

# language: en
@cloudtrail
Feature: AWS CloudTrail
Scenario: Making a request
When I call the "DescribeTrails" API
Then the response should contain a "trailList"
Scenario: Handling errors
When I attempt to call the "DeleteTrail" API with:
| Name | faketrail |
Then I expect the response error code to be "TrailNotFoundException"
And I expect the response error message to include:
"""
Unknown trail
"""