Sha256: 8e3d5dcba828e9748df2675ea5f93f4d1ddedd4bb7f279545dadc0385321fbd4

Contents?: true

Size: 820 Bytes

Versions: 2

Compression:

Stored size: 820 Bytes

Contents

require File.dirname(__FILE__) + '/../../../spec_helper'

describe 'SimpleDB.get_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 have no attributes for foo before put_attributes' do
      eventually do
        actual = sdb.get_attributes(@domain_name, 'foo')
        actual.body['Attributes'].should be_empty
      end
    end

    it 'should have attributes for foo after put_attributes' do
      sdb.put_attributes(@domain_name, 'foo', { :bar => :baz })
      eventually do
        actual = sdb.get_attributes(@domain_name, 'foo')
        actual.body['Attributes'].should == { 'bar' => ['baz'] }
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-0.0.4 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.3 spec/aws/requests/simpledb/get_attributes_spec.rb