1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/opennebula/compute_tests.rb
2014-06-16 08:32:35 +02:00

16 lines
446 B
Ruby

Shindo.tests('Fog::Compute[:opennebula]', ['opennebula']) do
compute = Fog::Compute[:opennebula]
tests("Compute collections") do
%w{networks groups}.each do |collection|
test("it should respond to #{collection}") { compute.respond_to? collection }
end
end
tests("Compute requests") do
%w{list_networks}.each do |request|
test("it should respond to #{request}") { compute.respond_to? request }
end
end
end