swf.feature 524 B

1234567891011121314151617
  1. # language: en
  2. @swf @client
  3. Feature: Amazon Simple Workflow Service
  4. Scenario: Making a request
  5. When I call the "ListDomains" API with:
  6. | registrationStatus | REGISTERED |
  7. Then the value at "domainInfos" should be a list
  8. Scenario: Handling errors
  9. When I attempt to call the "DescribeDomain" API with:
  10. | name | fake_domain |
  11. Then I expect the response error code to be "UnknownResourceFault"
  12. And I expect the response error message to include:
  13. """
  14. Unknown domain: fake_domain
  15. """