Sha256: 2c66ca1e212499c4665cdbe78cbc1a71af7003805ca0d855b42ec2ddd82da9e7
Contents?: true
Size: 833 Bytes
Versions: 25
Compression:
Stored size: 833 Bytes
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' describe 'SimpleDB.put_attributes' do describe 'success' do before(:each) do @domain_name = "fog_domain_#{Time.now.to_i}" sdb.create_domain(@domain_name) end after(:each) do sdb.delete_domain(@domain_name) end it 'should return proper attributes from put_attributes' do actual = sdb.put_attributes(@domain_name, 'foo', { 'bar' => 'baz' }) 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.put_attributes(@domain_name, 'notadomain', { 'notanattribute' => 'value' }) }.should raise_error(Fog::Errors::BadRequest) end end end
Version data entries
25 entries across 25 versions & 1 rubygems