1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google/requests/compute/list_images.rb
Carlos Sanchez 6c116666ed [google] Implement disk mocks and enable tests
Avoid repeating api_version
Add persistent disk to insert_server mock
Use Fog::Mock.delay properly instead of Fog.timeout
Update default image
2013-11-26 12:19:32 +01:00

36 lines
836 B
Ruby

module Fog
module Compute
class Google
class Mock
def list_images(project=@project)
images = data(project)[:images].values
build_response(:body => {
"kind" => "compute#imageList",
"selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{project}/global/images",
"id" => "projects/#{project}/global/images",
"items" => images
})
end
end
class Real
def list_images(project=nil)
api_method = @compute.images.list
project=@project if project.nil?
parameters = {
'project' => project
}
result = self.build_result(api_method, parameters)
response = self.build_response(result)
end
end
end
end
end