mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
19 lines
421 B
Ruby
19 lines
421 B
Ruby
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
describe 'SimpleDB.create_domain' do
|
|
|
|
before(:all) do
|
|
@domain_name = "fog_domain_#{Time.now.to_i}"
|
|
end
|
|
|
|
after(:all) do
|
|
sdb.delete_domain(@domain_name)
|
|
end
|
|
|
|
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
|
|
|
|
end
|