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.0.7 tests/models/elb/tagging_tests.rb
fog-aws-0.0.6 tests/models/elb/tagging_tests.rb
fog-aws-0.0.5 tests/models/elb/tagging_tests.rb
fog-1.26.0 tests/aws/models/elb/tagging_tests.rb
fog-1.25.0 tests/aws/models/elb/tagging_tests.rb
nsidc-fog-1.24.1 tests/aws/models/elb/tagging_tests.rb