mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
|
|
describe 'SimpleDB.delete_attributes' do
|
|
describe 'success' do
|
|
|
|
before(:each) do
|
|
@domain_name = "fog_domain_#{Time.now.to_i}"
|
|
sdb.create_domain(@domain_name)
|
|
sdb.put_attributes(@domain_name, 'foo', { :bar => :baz })
|
|
end
|
|
|
|
after(:each) do
|
|
sdb.delete_domain(@domain_name)
|
|
end
|
|
|
|
it 'should return proper attributes from delete_attributes' do
|
|
actual = sdb.delete_attributes(@domain_name, 'foo')
|
|
actual.body['RequestId'].should be_a(String)
|
|
actual.body['BoxUsage'].should be_a(Float)
|
|
end
|
|
|
|
end
|
|
describe 'failure' do
|
|
|
|
it 'shouild raise a BadRequest error if the domain does not exist' do
|
|
lambda {
|
|
sdb.delete_attributes('notadomain', 'notanattribute')
|
|
}.should raise_error(Fog::Errors::BadRequest)
|
|
end
|
|
|
|
it 'should not raise an error if the attribute does not exist' do
|
|
@domain_name = "fog_domain_#{Time.now.to_i}"
|
|
sdb.create_domain(@domain_name)
|
|
sdb.delete_attributes(@domain_name, 'notanattribute')
|
|
sdb.delete_domain(@domain_name)
|
|
end
|
|
|
|
end
|
|
end
|