mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
459 B
Ruby
15 lines
459 B
Ruby
Shindo.tests('Fog::Rackspace::LoadBalancer | load_balancers', ['rackspace']) do
|
|
|
|
@lb_name = 'fog' + Time.now.to_i.to_s
|
|
collection_tests(Fog::Rackspace::LoadBalancer.new.load_balancers,
|
|
{
|
|
:name => @lb_name,
|
|
:protocol => 'HTTP',
|
|
:port => 80,
|
|
:virtual_ips => [{ :type => 'PUBLIC'}],
|
|
:nodes => [{ :address => '10.0.0.1', :port => 80, :condition => 'ENABLED'}]
|
|
},
|
|
false) do
|
|
@instance.wait_for { ready? }
|
|
end
|
|
end
|