2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-05-19 02:06:49 -04:00
|
|
|
|
|
|
|
describe 'SimpleDB.delete_domain' do
|
2009-08-19 23:32:57 -04:00
|
|
|
describe 'success' do
|
2009-05-19 02:06:49 -04:00
|
|
|
|
2009-08-19 23:32:57 -04:00
|
|
|
before(:each) do
|
|
|
|
@domain_name = "fog_domain_#{Time.now.to_i}"
|
|
|
|
end
|
2009-05-19 02:06:49 -04:00
|
|
|
|
2009-08-19 23:32:57 -04:00
|
|
|
before(:each) do
|
2010-01-23 15:35:16 -05:00
|
|
|
AWS[:sdb].create_domain(@domain_name)
|
2009-08-19 23:32:57 -04:00
|
|
|
end
|
2009-05-19 02:06:49 -04:00
|
|
|
|
2009-08-19 23:32:57 -04:00
|
|
|
it 'should return proper attributes' do
|
2010-01-23 15:35:16 -05:00
|
|
|
actual = AWS[:sdb].delete_domain(@domain_name)
|
2009-08-19 23:32:57 -04:00
|
|
|
actual.body['RequestId'].should be_a(String)
|
|
|
|
actual.body['BoxUsage'].should be_a(Float)
|
|
|
|
end
|
2009-05-19 02:06:49 -04:00
|
|
|
|
2009-08-19 23:32:57 -04:00
|
|
|
end
|
2009-09-08 00:25:50 -04:00
|
|
|
describe 'failure' do
|
|
|
|
|
|
|
|
it 'should not raise an error if the domain does not exist' do
|
2010-01-23 15:35:16 -05:00
|
|
|
AWS[:sdb].delete_domain('notadomain')
|
2009-09-08 00:25:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-08-19 23:32:57 -04:00
|
|
|
end
|