mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
552 B
Ruby
22 lines
552 B
Ruby
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
|
|
class Real
|
|
basic_request :get_customization_options
|
|
end
|
|
|
|
class Mock
|
|
def get_customization_options(options_uri)
|
|
builder = Builder::XmlMarkup.new
|
|
xml = builder.CustomizationParameters(xmlns) do
|
|
builder.CustomizeNetwork "true"
|
|
builder.CustomizePassword "false"
|
|
end
|
|
|
|
mock_it 200, xml, "Content-Type" => "application/vnd.tmrk.ecloud.catalogItemCustomizationParameters+xml"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|