Sha256: 43cf90d03a977d81af97457db43c906157d69d3adcc2181d4f105a0fabd7d31c
Contents?: true
Size: 1.38 KB
Versions: 16
Compression:
Stored size: 1.38 KB
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' describe 'Storage.put_object' do describe 'success' do before(:each) do Google[:storage].put_bucket('fogputobject') @response = Google[:storage].put_object('fogputobject', 'fog_put_object', lorem_file) end after(:each) do Google[:storage].delete_object('fogputobject', 'fog_put_object') Google[:storage].delete_bucket('fogputobject') end it 'should return proper attributes' do @response.status.should == 200 end it 'should not raise an error if the object already exists' do actual = Google[:storage].put_object('fogputobject', 'fog_put_object', lorem_file) actual.status.should == 200 end end describe 'failure' do it 'should raise a NotFound error if the bucket does not exist' do lambda { Google[:storage].put_object('fognotabucket', 'fog_put_object', lorem_file) }.should raise_error(Excon::Errors::NotFound) end it 'should not raise an error if the object already exists' do Google[:storage].put_bucket('fogputobject') Google[:storage].put_object('fogputobject', 'fog_put_object', lorem_file) Google[:storage].put_object('fogputobject', 'fog_put_object', lorem_file) Google[:storage].delete_object('fogputobject', 'fog_put_object') Google[:storage].delete_bucket('fogputobject') end end end
Version data entries
16 entries across 16 versions & 1 rubygems