mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
514 B
Ruby
27 lines
514 B
Ruby
module Fog
|
|
module HP
|
|
class LB
|
|
class Real
|
|
|
|
def list_versions
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => ''
|
|
)
|
|
end
|
|
end
|
|
class Mock
|
|
|
|
def list_versions
|
|
response = Excon::Response.new
|
|
versions = self.data[:versions].values
|
|
response.status = 200
|
|
response.body = { 'versions' => versions }
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|