Sha256: d07b9a3677fe9badd23f33e5f8360bf9e6ca8c02612a74b299c5a1058e0f68c4

Contents?: true

Size: 505 Bytes

Versions: 4

Compression:

Stored size: 505 Bytes

Contents

# language: en
@importexport @client
Feature: AWS Import/Export

  Scenario: Making a basic request
    When I call "list_jobs" on "importexport"
    Then the response "jobs" should be an array

  Scenario: Error handling
    Given I call "get_status" on "importexport" with:
    """
    { job_id: 'fake_job' }
    """
    Then I expect the response error code to be "InvalidJobIdException"
    And I expect the response error message to include:
    """
    No such job fake_job for your account
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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