ses.feature 504 B

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