Sha256: 4265e5041b11fbb34a81f8b419017134e789f9c3dab19a29e9d0ef2c1e79cf33

Contents?: true

Size: 730 Bytes

Versions: 102

Compression:

Stored size: 730 Bytes

Contents

require File.dirname(__FILE__) + '/../../../spec_helper'

describe 'S3.get_request_payment' do
  describe 'success' do

    before(:each) do
      AWS[:s3].put_bucket('foggetrequestpayment')
    end

    after(:each) do
      AWS[:s3].delete_bucket('foggetrequestpayment')
    end

    it 'should return proper attributes' do
      actual = AWS[:s3].get_request_payment('foggetrequestpayment')
      actual.status.should == 200
      actual.body['Payer'].should == 'BucketOwner'
    end

  end
  describe 'failure' do

    it 'should raise a NotFound error if the bucket does not exist' do
      lambda {
        AWS[:s3].get_request_payment('fognotabucket')
      }.should raise_error(Excon::Errors::NotFound)
    end

  end
end

Version data entries

102 entries across 102 versions & 2 rubygems

Version Path
fog-0.0.62 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.61 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.60 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.59 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.58 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.57 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.56 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.55 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.54 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.53 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.52 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.51 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.50 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.49 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.48 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.47 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.46 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.45 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.44 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.0.43 spec/aws/requests/s3/get_request_payment_spec.rb