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

29 lines
756 B
Ruby
Raw Normal View History

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'S3.put_bucket' do
2009-06-05 19:51:17 -04:00
after(:all) do
s3.delete_bucket('fogputbucket')
end
it 'should not include fogputbucket in get_service buckets before put_bucket' do
2009-07-16 02:37:22 -04:00
eventually do
actual = s3.get_service
2009-07-29 22:50:51 -04:00
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should_not include('fogputbucket')
2009-07-16 02:37:22 -04:00
end
2009-06-05 19:51:17 -04:00
end
it 'should return proper attributes' do
actual = s3.put_bucket('fogputbucket')
actual.status.should == 200
end
2009-06-05 19:51:17 -04:00
it 'should include fogputbucket in get_service buckets after put_bucket' do
2009-07-16 02:37:22 -04:00
eventually do
actual = s3.get_service
2009-07-29 22:50:51 -04:00
actual.body['Buckets'].collect { |bucket| bucket['Name'] }.should include('fogputbucket')
2009-07-16 02:37:22 -04:00
end
2009-06-05 19:51:17 -04:00
end
end