2014-02-16 01:06:49 +02:00
|
|
|
Shindo.tests('Fog::Compute[:fogdocker]', ['fogdocker']) do
|
|
|
|
|
|
|
|
compute = Fog::Compute[:fogdocker]
|
|
|
|
|
|
|
|
tests("Compute collections") do
|
|
|
|
%w{ servers images }.each do |collection|
|
|
|
|
test("it should respond to #{collection}") { compute.respond_to? collection }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
tests("Compute requests") do
|
|
|
|
%w{ api_version container_all container_create container_delete container_get
|
2014-10-13 16:25:14 +01:00
|
|
|
container_action image_all image_create image_delete image_get image_search }.each do |collection|
|
2014-02-16 01:06:49 +02:00
|
|
|
test("it should respond to #{collection}") { compute.respond_to? collection }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|