Sha256: 75c60b1ab556475b7ea1cd01a9406cda246976043bd5e8a5a386d812aca2fe78

Contents?: true

Size: 554 Bytes

Versions: 8

Compression:

Stored size: 554 Bytes

Contents

# language: en
@sns @client
Feature: Amazon Simple Notification Service

  Scenario: Making a basic request
    When I call the "ListTopics" API
    Then the response should contain a list of "Topics"

  Scenario: Error handling
    When I attempt to call the "Publish" API with:
    | Message  | hello      |
    | TopicArn | fake_topic |
    Then I expect the response error code to be "InvalidParameter"
    And I expect the response error message to include:
    """
    Invalid parameter: TopicArn Reason: fake_topic does not start with arn
    """

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc12 features/sns/client.feature
aws-sdk-core-2.0.0.rc11 features/sns/client.feature
aws-sdk-core-2.0.0.rc10 features/sns/client.feature
aws-sdk-core-2.0.0.rc9 features/sns/client.feature
aws-sdk-core-2.0.0.rc8 features/sns/client.feature
aws-sdk-core-2.0.0.rc7 features/sns/client.feature
aws-sdk-core-2.0.0.rc6 features/sns/client.feature
aws-sdk-core-2.0.0.rc5 features/sns/client.feature