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/put_attributes_spec.rb

22 lines
546 B
Ruby
Raw Normal View History

2009-08-17 15:55:30 -07:00
require File.dirname(__FILE__) + '/../../../spec_helper'
2009-05-18 23:06:49 -07:00
describe 'SimpleDB.put_attributes' do
before(:all) do
@sdb = Fog::AWS::SimpleDB.gen
2009-07-15 11:53:32 -07:00
@domain_name = "fog_domain_#{Time.now.to_i}"
@sdb.create_domain(@domain_name)
2009-05-18 23:06:49 -07:00
end
after(:all) do
@sdb.delete_domain(@domain_name)
2009-05-18 23:06:49 -07:00
end
it 'should return proper attributes from put_attributes' do
actual = @sdb.put_attributes(@domain_name, 'foo', { 'bar' => 'baz' })
2009-07-30 23:13:48 -07:00
actual.body['RequestId'].should be_a(String)
actual.body['BoxUsage'].should be_a(Float)
2009-05-18 23:06:49 -07:00
end
end