Sha256: d12627d2dbecc0fa2086d584b2d7bbb5888df0a9bcb531a3c793bf5c61608631
Contents?: true
Size: 880 Bytes
Versions: 137
Compression:
Stored size: 880 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}" AWS[:sdb].create_domain(@domain_name) end after(:all) do AWS[:sdb].delete_domain(@domain_name) end it 'should return proper attributes' do actual = AWS[: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 { AWS[:sdb].batch_put_attributes('notadomain', { 'a' => { 'b' => 'c' }, 'x' => { 'y' => 'z' } }) }.should raise_error(Excon::Errors::BadRequest) end end end
Version data entries
137 entries across 137 versions & 2 rubygems