1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/aws/s3/put_bucket_spec.rb
2009-07-29 19:50:51 -07:00

28 lines
756 B
Ruby

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'S3.put_bucket' do
after(:all) do
s3.delete_bucket('fogputbucket')
end
it 'should not include fogputbucket in get_service buckets before put_bucket' do
eventually do
actual = s3.get_service
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should_not include('fogputbucket')
end
end
it 'should return proper attributes' do
actual = s3.put_bucket('fogputbucket')
actual.status.should == 200
end
it 'should include fogputbucket in get_service buckets after put_bucket' do
eventually do
actual = s3.get_service
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should include('fogputbucket')
end
end
end