Sha256: ddc2529c8fb15a7c1a5e8950837eb9168a833f8282934fe293e131301f455994

Contents?: true

Size: 975 Bytes

Versions: 6

Compression:

Stored size: 975 Bytes

Contents

# language: en
@s3 @objects
Feature: S3 Objects

 Background:
    Given I create a bucket

  Scenario: Putting nothing to an object
    When I put nothing to the key "blank"
    Then the object with the key "blank" should have a content length of 0

  Scenario: Putting a multi-byte string to an object
    When I put "åß∂ƒ©" to the key "multi"
    Then the object with the key "multi" should have a content length of 11

  Scenario: Putting a file to an object
    When I put the test png to the key "img"
    Then the object with the key "img" should have a content length of 976

  @paging
  Scenario: Paging responses
    Given I put nothing to the key "photos/camping/cascades.jpg"
    Given I put nothing to the key "photos/skiing/stevens.jpg"
    And I put nothing to the key "photos/family.jpg"
    And I put nothing to the key "photos/friends.jpg"
    When I page s3 objects prefixed "photos/" delimited "/" limit 1
    Then I should have received 4 responses

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc8 features/s3/objects.feature
aws-sdk-core-2.0.0.rc7 features/s3/objects.feature
aws-sdk-core-2.0.0.rc6 features/s3/objects.feature
aws-sdk-core-2.0.0.rc5 features/s3/objects.feature
aws-sdk-core-2.0.0.rc4 features/s3/objects.feature
aws-sdk-core-2.0.0.rc3 features/s3/objects.feature