Sha256: be3ce6ec781c9c3376c67c1e87e1b8cece6605429a78e26ed31f63050a0be76c

Contents?: true

Size: 776 Bytes

Versions: 39

Compression:

Stored size: 776 Bytes

Contents

Shindo.tests('Fog::Rackspace::AutoScale | webhooks', ['rackspace', 'rackspace_autoscale']) do
  pending if Fog.mocking?
  service = Fog::Rackspace::AutoScale.new :rackspace_region => :ord

  begin
    group = service.groups.create({
      :policies => POLICIES_OPTIONS,
      :group_config => GROUP_CONFIG_OPTIONS,
      :launch_config => LAUNCH_CONFIG_OPTIONS
    })

    policy = group.policies.create({
      :name => "policy 2",
      :change => 5,
      :cooldown => 100,
      :type => 'webhook',
      :group => group
    })

    options = {:name => 'New webhook', :group => group, :policy => policy }
    collection_tests(policy.webhooks, options, false)
  ensure
    policy.destroy if policy
    deactive_auto_scale_group(group)
    group.destroy if group
  end

end

Version data entries

39 entries across 37 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 tests/rackspace/models/auto_scale/webhooks_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/auto_scale/webhooks_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/auto_scale/webhooks_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.5 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.4 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.3 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.2 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.1 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-rackspace-0.1.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.37.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.36.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.35.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-2.0.0.pre.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.34.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.33.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.32.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
fog-1.31.0 tests/rackspace/models/auto_scale/webhooks_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/rackspace/models/auto_scale/webhooks_tests.rb