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.2.10 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.9 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.8 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.7 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.6 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.5 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.4 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.3 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.2 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.1 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.2.0 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.10 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.9 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.8 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.7 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.6 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.5 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.4 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.3 spec/aws/requests/s3/get_request_payment_spec.rb
fog-0.1.2 spec/aws/requests/s3/get_request_payment_spec.rb