mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
763 B
Ruby
21 lines
763 B
Ruby
Shindo.tests('AWS::ELB | load_balancer_tests', ['aws', 'elb']) do
|
|
@load_balancer_id = 'fog-test-elb'
|
|
|
|
tests('success') do
|
|
pending if Fog.mocking?
|
|
|
|
tests("#create_load_balancer").formats(AWS::ELB::Formats::CREATE_LOAD_BALANCER) do
|
|
zones = ['us-east-1a']
|
|
listeners = [{'LoadBalancerPort' => 80, 'InstancePort' => 80, 'Protocol' => 'http'}]
|
|
AWS[:elb].create_load_balancer(zones, @load_balancer_id, listeners).body
|
|
end
|
|
|
|
tests("#describe_load_balancers").formats(AWS::ELB::Formats::DESCRIBE_LOAD_BALANCERS) do
|
|
AWS[:elb].describe_load_balancers.body
|
|
end
|
|
|
|
tests("#delete_load_balancer").formats(AWS::ELB::Formats::DELETE_LOAD_BALANCER) do
|
|
AWS[:elb].delete_load_balancer(@load_balancer_id).body
|
|
end
|
|
end
|
|
end
|