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-3.12.0 tests/models/elb/tagging_tests.rb
fog-aws-3.11.0 tests/models/elb/tagging_tests.rb
fog-aws-3.10.0 tests/models/elb/tagging_tests.rb
fog-aws-3.9.0 tests/models/elb/tagging_tests.rb
fog-aws-3.8.0 tests/models/elb/tagging_tests.rb
fog-aws-3.7.0 tests/models/elb/tagging_tests.rb
fog-aws-3.6.7 tests/models/elb/tagging_tests.rb
fog-aws-3.6.6 tests/models/elb/tagging_tests.rb
fog-aws-3.6.5 tests/models/elb/tagging_tests.rb
fog-aws-3.6.4 tests/models/elb/tagging_tests.rb
fog-aws-3.6.3 tests/models/elb/tagging_tests.rb
fog-aws-3.6.2 tests/models/elb/tagging_tests.rb
fog-aws-3.5.2 tests/models/elb/tagging_tests.rb
fog-aws-3.5.1 tests/models/elb/tagging_tests.rb
fog-aws-3.5.0 tests/models/elb/tagging_tests.rb
fog-aws-3.4.0 tests/models/elb/tagging_tests.rb
fog-aws-3.3.0 tests/models/elb/tagging_tests.rb
fog-aws-3.2.0 tests/models/elb/tagging_tests.rb
fog-aws-3.1.0 tests/models/elb/tagging_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/models/elb/tagging_tests.rb