mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
No EOL
636 B
Ruby
29 lines
No EOL
636 B
Ruby
Shindo.tests('Fog::Rackspace::AutoScale | policy', ['rackspace', 'rackspace_autoscale']) do
|
|
|
|
service = Fog::Rackspace::AutoScale.new :rackspace_region => :ord
|
|
|
|
group = service.groups.create({
|
|
:policies => POLICIES_OPTIONS,
|
|
:group_config => GROUP_CONFIG_OPTIONS,
|
|
:launch_config => LAUNCH_CONFIG_OPTIONS
|
|
})
|
|
|
|
options = {
|
|
:name => "policy 2",
|
|
:change => 5,
|
|
:cooldown => 100,
|
|
:type => 'webhook',
|
|
:group_id => group.id
|
|
}
|
|
|
|
begin
|
|
model_tests(group.policies, options, false) do
|
|
tests('#webhooks').succeeds do
|
|
@instance.webhooks
|
|
end
|
|
end
|
|
ensure
|
|
group.destroy
|
|
end
|
|
|
|
end |