1# language: en
2@sns @client
3Feature: Amazon Simple Notification Service
4
5  Scenario: Making a request
6    When I call the "ListTopics" API
7    Then the value at "Topics" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "Publish" API with:
11      | Message  | hello      |
12      | TopicArn | fake_topic |
13    Then I expect the response error code to be "InvalidParameter"
14