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

18 lines
536 B
Gherkin

# language: en
@kms
Feature: Amazon Key Management Service
Scenario: Making a request
When I call the "ListAliases" API
Then the value at "Aliases" should be a list
Scenario: Handling errors
When I attempt to call the "GetKeyPolicy" API with:
| KeyId | 12345678-1234-1234-1234-123456789012 |
| PolicyName | fake-policy |
Then I expect the response error code to be "NotFoundException"
And I expect the response error message to include:
"""
does not exist
"""