2011-05-30 23:24:42 -04:00
|
|
|
class Vcloud
|
|
|
|
module Compute
|
|
|
|
module TestSupport
|
2011-07-20 13:11:10 -04:00
|
|
|
|
|
|
|
if Fog.mocking?
|
|
|
|
def self.template
|
|
|
|
'mock_template'
|
|
|
|
end
|
|
|
|
else
|
|
|
|
def self.template
|
|
|
|
template_name = ENV['VCLOUD_TEMPLATE']
|
|
|
|
raise "Specify VApp template name in VCLOUD_TEMPLATE env var" unless template_name
|
|
|
|
template_res = Vcloud.catalogs.item_by_name template_name
|
|
|
|
raise "URI Not found for specified template - check template name" unless template_res
|
|
|
|
template_res.href
|
|
|
|
end
|
2011-05-30 23:24:42 -04:00
|
|
|
end
|
2011-07-20 13:11:10 -04:00
|
|
|
|
2011-05-30 23:24:42 -04:00
|
|
|
end
|
2011-07-20 13:11:10 -04:00
|
|
|
|
2011-05-30 23:24:42 -04:00
|
|
|
module Formats
|
|
|
|
end
|
2011-07-20 13:11:10 -04:00
|
|
|
|
2011-05-30 23:24:42 -04:00
|
|
|
end
|
|
|
|
end
|