1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[brightbox] Rough LoadBalancer model in place

This commit is contained in:
Paul Thornthwaite 2010-12-03 14:54:50 +00:00
parent 26358ecb98
commit e355a5ccb4
4 changed files with 85 additions and 4 deletions

View file

@ -25,6 +25,8 @@ Shindo.tests('Brightbox::Compute | load balancer requests', ['brightbox']) do
data
end
Brightbox[:compute].load_balancers.get(@load_balancer_id).wait_for { ready? }
# tests("#list_load_balancers()").formats(Brightbox::Compute::Formats::Collection::LOAD_BALANCERS) do
# Brightbox[:compute].list_load_balancers
# end
@ -33,10 +35,9 @@ Shindo.tests('Brightbox::Compute | load balancer requests', ['brightbox']) do
Brightbox[:compute].get_load_balancer(@load_balancer_id)
end
# May fail since the load balancer is likely to still be "creating" when this test is called
# tests("#destroy_load_balancer('#{@load_balancer_id}')").formats(Brightbox::Compute::Formats::Full::LOAD_BALANCER) do
# Brightbox[:compute].destroy_load_balancer(@load_balancer_id)
# end
tests("#destroy_load_balancer('#{@load_balancer_id}')").formats(Brightbox::Compute::Formats::Full::LOAD_BALANCER) do
Brightbox[:compute].destroy_load_balancer(@load_balancer_id)
end
end