Sha256: aac84733ef424c1060d73b2badb41e87bfb94cb030528f0bac55cc14396b9b3c

Contents?: true

Size: 503 Bytes

Versions: 4

Compression:

Stored size: 503 Bytes

Contents

# language: en
@route53 @client
Feature: Amazon Route 53

  Scenario: Making a basic request
    When I call "list_hosted_zones" on "route53"
    Then the response "hosted_zones" should be an array

  Scenario: Error handling
    Given I call "get_hosted_zone" on "route53" with:
    """
    { id: 'fake-zone' }
    """
    Then I expect the response error code to be "NoSuchHostedZone"
    And I expect the response error message to include:
    """
    No hosted zone found with ID: fake-zone
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc4 features/route53/client.feature
aws-sdk-core-2.0.0.rc3 features/route53/client.feature
aws-sdk-core-2.0.0.rc2 features/route53/client.feature
aws-sdk-core-2.0.0.rc1 features/route53/client.feature