Sha256: c5c7f33ce82dfe6bf498ac314f90b2badf653d28e2bab9fc34726ff580c117f1

Contents?: true

Size: 577 Bytes

Versions: 2

Compression:

Stored size: 577 Bytes

Contents

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

describe 'SimpleDB.batch_put_attributes' do
  describe 'success' do

    before(:all) do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      sdb.create_domain(@domain_name)
    end

    after(:all) do
      sdb.delete_domain(@domain_name)
    end

    it 'should return proper attributes' do
      actual = sdb.batch_put_attributes(@domain_name, { 'a' => { 'b' => 'c' }, 'x' => { 'y' => 'z' } })
      actual.body['RequestId'].should be_a(String)
      actual.body['BoxUsage'].should be_a(Float)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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