mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
499 B
Ruby
22 lines
499 B
Ruby
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
|
|
class Real
|
|
basic_request :get_template
|
|
end
|
|
|
|
class Mock
|
|
def get_template(uri)
|
|
template_id, compute_pool_id = uri.match(/(\d+).*\/(\d+)$/).captures
|
|
template = self.data[:templates][template_id.to_i]
|
|
|
|
if template
|
|
response(:body => Fog::Ecloud.slice(template, :id, :environment))
|
|
else response(:status => 404) # ?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|