mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
49 lines
1 KiB
Ruby
49 lines
1 KiB
Ruby
module Fog
|
|
module Compute
|
|
class DigitalOcean
|
|
class Real
|
|
|
|
def list_images(options = {})
|
|
request(
|
|
:expects => [200],
|
|
:method => 'GET',
|
|
:path => 'images'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def list_images
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = {
|
|
"status" => "OK",
|
|
"images" => [
|
|
# Sample image
|
|
{
|
|
"id" => 1601,
|
|
"name" => "CentOS 5.8 x64",
|
|
"distribution" => "CentOS"
|
|
},
|
|
{
|
|
"id" => 1602,
|
|
"name" => "CentOS 5.8 x32",
|
|
"distribution" => "CentOS"
|
|
},
|
|
{
|
|
"id" => 2676,
|
|
"name" => "Ubuntu 12.04 x64",
|
|
"distribution" => "Ubuntu"
|
|
},
|
|
|
|
]
|
|
}
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|