fog--fog/spec/aws/requests/s3/delete_object_spec.rb

30 lines
837 B
Ruby
Raw Normal View History

2009-08-17 22:55:30 +00:00
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'S3.delete_object' do
2009-06-08 22:49:24 +00:00
before(:all) do
s3.put_bucket('fogdeleteobject')
2009-08-17 22:55:30 +00:00
file = File.open(File.dirname(__FILE__) + '/../../../lorem.txt', 'r')
s3.put_object('fogdeleteobject', 'fog_delete_object', file)
2009-06-08 22:49:24 +00:00
end
after(:all) do
s3.delete_bucket('fogdeleteobject')
2009-06-08 22:49:24 +00:00
end
it 'should return proper attributes' do
actual = s3.delete_object('fogdeleteobject', 'fog_delete_object')
actual.status.should == 204
end
it 'should raise NotFound error if the bucket does not exist' do
lambda {
s3.delete_object('fognotabucket', 'fog_delete_object')
}.should raise_error(Fog::Errors::NotFound)
end
it 'should not raise an error if the object does not exist' do
s3.delete_object('fogdeleteobject', 'fog_not_an_object')
end
end