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/simpledb/get_attributes_spec.rb
2009-05-24 09:11:32 -07:00

22 lines
720 B
Ruby

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'SimpleDB.get_attributes' do
before(:all) do
sdb.create_domain('get_attributes')
end
after(:all) do
sdb.delete_domain('get_attributes')
end
it 'should have no attributes for foo before put_attributes' do
lambda { sdb.get_attributes('get_attributes', 'foo') }.should eventually { |expected| expected.body[:attributes].should be_empty }
end
it 'should have attributes for foo after put_attributes' do
sdb.put_attributes('get_attributes', 'foo', { :bar => :baz })
lambda { sdb.get_attributes('get_attributes', 'foo') }.should eventually { |expected| expected.body[:attributes].should == { 'bar' => ['baz'] } }
end
end