Sha256: 2a7eee8763685d6684a95afa193ed1861a12d8308c5a05b3f025415a7820376e

Contents?: true

Size: 498 Bytes

Versions: 4

Compression:

Stored size: 498 Bytes

Contents

# language: en
@iam @client
Feature: AWS Identity and Access Management

  Scenario: Making a basic request
    When I call "list_users" on "iam"
    Then the response "users" should be an array

  Scenario: Error handling
    Given I call "get_user" on "iam" with:
    """
    { user_name: 'fake_user' }
    """
    Then I expect the response error code to be "NoSuchEntity"
    And I expect the response error message to include:
    """
    The user with name fake_user cannot be found.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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