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

17 lines
496 B
Gherkin

# language: en
@ses @email
Feature: Amazon Simple Email Service
Scenario: Making a request
When I call the "ListIdentities" API
Then the value at "Identities" should be a list
Scenario: Handling errors
When I attempt to call the "VerifyEmailIdentity" API with:
| EmailAddress | fake_email |
Then I expect the response error code to be "InvalidParameterValue"
And I expect the response error message to include:
"""
Invalid email address<fake_email>.
"""