Sha256: 41f392723d8f1a7e4a2e4b108421993200b1bea5ee39efc10c9bb8aabc77fe60
Contents?: true
Size: 854 Bytes
Versions: 25
Compression:
Stored size: 854 Bytes
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' describe 'SimpleDB.batch_put_attributes' do describe 'success' do before(:all) do @domain_name = "fog_domain_#{Time.now.to_i}" sdb.create_domain(@domain_name) end after(:all) do sdb.delete_domain(@domain_name) end it 'should return proper attributes' do actual = sdb.batch_put_attributes(@domain_name, { 'a' => { 'b' => 'c' }, 'x' => { 'y' => 'z' } }) actual.body['RequestId'].should be_a(String) actual.body['BoxUsage'].should be_a(Float) end end describe 'failure' do it 'should raise a BadRequest error if the domain does not exist' do lambda { sdb.batch_put_attributes('notadomain', { 'a' => { 'b' => 'c' }, 'x' => { 'y' => 'z' } }) }.should raise_error(Fog::Errors::BadRequest) end end end
Version data entries
25 entries across 25 versions & 1 rubygems