Sha256: 04e6b13db03ef998e15dd90a250011266cfec4d086bcf7eb7dcf9f9344a862d8

Contents?: true

Size: 545 Bytes

Versions: 66

Compression:

Stored size: 545 Bytes

Contents

Shindo.tests("AWS::ELB | tagging", ['aws', 'elb']) do
  @elb5 = Fog::AWS[:elb].load_balancers.create(:id => "fog-test-elb-tagging")
  tags1 = {'key1' => 'val1'}
  tags2 = {'key2' => 'val2'}
  
  tests "add and remove tags from an ELB" do
    returns({})                 { @elb5.tags }
    returns(tags1)              { @elb5.add_tags tags1 }
    returns(tags1.merge tags2)  { @elb5.add_tags tags2 }
    returns(tags2)              { @elb5.remove_tags tags1.keys  }
    returns(tags2)              { @elb5.tags }
    
    @elb5.destroy
  end
end

Version data entries

66 entries across 64 versions & 5 rubygems

Version Path
fog-aws-0.9.0 tests/models/elb/tagging_tests.rb
fog-aws-0.8.1 tests/models/elb/tagging_tests.rb
fog-aws-0.8.0 tests/models/elb/tagging_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/tests/models/elb/tagging_tests.rb
fog-aws-0.7.6 tests/models/elb/tagging_tests.rb
fog-aws-0.7.5 tests/models/elb/tagging_tests.rb
fog-aws-0.7.4 tests/models/elb/tagging_tests.rb
fog-aws-0.7.3 tests/models/elb/tagging_tests.rb
fog-aws-0.7.2 tests/models/elb/tagging_tests.rb
fog-aws-0.6.0 tests/models/elb/tagging_tests.rb
fog-aws-0.5.0 tests/models/elb/tagging_tests.rb
fog-aws-0.4.1 tests/models/elb/tagging_tests.rb
fog-aws-0.4.0 tests/models/elb/tagging_tests.rb
fog-aws-0.3.0 tests/models/elb/tagging_tests.rb
fog-aws-0.2.2 tests/models/elb/tagging_tests.rb
fog-aws-0.2.0 tests/models/elb/tagging_tests.rb
fog-aws-0.1.2 tests/models/elb/tagging_tests.rb
fog-aws-0.1.1 tests/models/elb/tagging_tests.rb
fog-aws-0.1.0 tests/models/elb/tagging_tests.rb
fog-aws-0.0.8 tests/models/elb/tagging_tests.rb