mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
32 lines
670 B
Ruby
32 lines
670 B
Ruby
module Fog
|
|
module Metering
|
|
class OpenStack
|
|
class Real
|
|
|
|
def list_resources(options = {})
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => 'resources'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def list_resources(options = {})
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = [{
|
|
'resource_id'=>'glance',
|
|
'project_id'=>'d646b40dea6347dfb8caee2da1484c56',
|
|
'user_id'=>'1d5fd9eda19142289a60ed9330b5d284',
|
|
'metadata'=>{}}]
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|