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