Sha256: e2f15bfe8b40c3d4c0b88628ebd0b03645f96624d49fc8b579f648808b30d7e4

Contents?: true

Size: 1.1 KB

Versions: 25

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(Fog::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

25 entries across 25 versions & 1 rubygems

Version Path
fog-0.0.29 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.28 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.27 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.26 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.25 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.24 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.23 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.22 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.21 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.20 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.19 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.18 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.17 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.16 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.15 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.14 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.13 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.12 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.11 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.10 spec/aws/requests/simpledb/delete_attributes_spec.rb