Sha256: 3270278331fa26b8a010f5b3b20aa90207c9ca95317008d36b5df30a1369313b

Contents?: true

Size: 1.1 KB

Versions: 11

Compression:

Stored size: 1.1 KB

Contents

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

describe 'SimpleDB.delete_attributes' do
  describe 'success' do

    before(:each) do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      sdb.create_domain(@domain_name)
      sdb.put_attributes(@domain_name, 'foo', { :bar => :baz })
    end

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

    it 'should return proper attributes from delete_attributes' do
      actual = sdb.delete_attributes(@domain_name, 'foo')
      actual.body['RequestId'].should be_a(String)
      actual.body['BoxUsage'].should be_a(Float)
    end

  end
  describe 'failure' do

    it 'shouild raise a BadRequest error if the domain does not exist' do
      lambda {
        sdb.delete_attributes('notadomain', 'notanattribute')
      }.should raise_error(Excon::Errors::BadRequest)
    end

    it 'should not raise an error if the attribute does not exist' do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      sdb.create_domain(@domain_name)
      sdb.delete_attributes(@domain_name, 'notanattribute')
      sdb.delete_domain(@domain_name)
    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fog-0.0.40 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.39 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.38 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.37 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.36 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.35 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.34 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.33 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.32 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.31 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.30 spec/aws/requests/simpledb/delete_attributes_spec.rb