1# language: en
2@smoke @ses @email
3Feature: Amazon Simple Email Service
4
5  Scenario: Making a request
6    When I call the "ListIdentities" API
7    Then the value at "Identities" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "VerifyEmailIdentity" API with:
11      | EmailAddress | fake_email |
12    Then I expect the response error code to be "InvalidParameterValue"
13