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

30 lines
748 B
Ruby
Raw Normal View History

2009-08-17 18:55:30 -04:00
require File.dirname(__FILE__) + '/../../../spec_helper'
2009-05-19 02:06:49 -04:00
describe 'SimpleDB.get_attributes' do
before(:all) do
2009-07-15 14:53:32 -04:00
@domain_name = "fog_domain_#{Time.now.to_i}"
sdb.create_domain(@domain_name)
2009-05-19 02:06:49 -04:00
end
after(:all) do
sdb.delete_domain(@domain_name)
2009-05-19 02:06:49 -04:00
end
it 'should have no attributes for foo before put_attributes' do
2009-07-16 02:37:22 -04:00
eventually do
actual = sdb.get_attributes(@domain_name, 'foo')
2009-07-31 02:13:48 -04:00
actual.body['Attributes'].should be_empty
2009-07-16 02:37:22 -04:00
end
2009-05-19 02:06:49 -04:00
end
it 'should have attributes for foo after put_attributes' do
sdb.put_attributes(@domain_name, 'foo', { :bar => :baz })
2009-07-16 02:37:22 -04:00
eventually do
actual = sdb.get_attributes(@domain_name, 'foo')
2009-07-31 02:13:48 -04:00
actual.body['Attributes'].should == { 'bar' => ['baz'] }
2009-07-16 02:37:22 -04:00
end
2009-05-19 02:06:49 -04:00
end
end