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
|
2009-08-11 22:18:27 -07:00
|
|
|
@sdb = Fog::AWS::SimpleDB.gen
|
2009-07-15 11:53:32 -07:00
|
|
|
@domain_name = "fog_domain_#{Time.now.to_i}"
|
2009-08-11 22:18:27 -07:00
|
|
|
@sdb.create_domain(@domain_name)
|
2009-05-18 23:06:49 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
2009-08-11 22:18:27 -07:00
|
|
|
@sdb.delete_domain(@domain_name)
|
2009-05-18 23:06:49 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return proper attributes from put_attributes' do
|
2009-08-11 22:18:27 -07:00
|
|
|
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
|