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/requests/simpledb/create_domain_spec.rb

22 lines
478 B
Ruby
Raw Normal View History

2009-08-17 18:55:30 -04:00
require File.dirname(__FILE__) + '/../../../spec_helper'
2009-05-19 02:06:49 -04:00
describe 'SimpleDB.create_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
after(:each) do
sdb.delete_domain(@domain_name)
end
2009-05-19 02:06:49 -04:00
2009-08-19 23:32:57 -04:00
it 'should return proper attributes' do
actual = sdb.create_domain(@domain_name)
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-05-19 02:06:49 -04:00
end