2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-06-07 04:55:52 -04:00
|
|
|
|
|
|
|
describe 'S3.put_request_payment' do
|
|
|
|
|
2009-06-25 03:32:27 -04:00
|
|
|
before(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
s3.put_bucket('fogputrequestpayment')
|
2009-06-25 03:32:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
s3.delete_bucket('fogputrequestpayment')
|
2009-06-25 03:32:27 -04:00
|
|
|
end
|
|
|
|
|
2009-06-07 04:55:52 -04:00
|
|
|
it 'should return proper attributes' do
|
2009-08-18 01:39:44 -04:00
|
|
|
actual = s3.put_request_payment('fogputrequestpayment', 'Requester')
|
2009-06-29 04:02:55 -04:00
|
|
|
actual.status.should == 200
|
2009-06-07 04:55:52 -04:00
|
|
|
end
|
|
|
|
|
2009-08-16 16:31:36 -04:00
|
|
|
it 'should raise a NotFound error if bucket does not exist' do
|
|
|
|
lambda {
|
2009-08-18 01:39:44 -04:00
|
|
|
s3.put_request_payment('fognotabucket', 'Requester')
|
2009-08-16 16:31:36 -04:00
|
|
|
}.should raise_error(Fog::Errors::NotFound)
|
|
|
|
end
|
|
|
|
|
2009-06-07 04:55:52 -04:00
|
|
|
end
|