mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
31 lines
762 B
Ruby
31 lines
762 B
Ruby
module Fog
|
|
module Compute
|
|
class CloudSigma
|
|
class Real
|
|
def clone_volume(vol_id, clone_params={})
|
|
request(:path => "drives/#{vol_id}/action/",
|
|
:method => 'POST',
|
|
:query => {:do => :clone},
|
|
:body => clone_params,
|
|
:expects => [200, 202])
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def clone_volume(vol_id, clone_params={})
|
|
volume = self.data[:volumes][vol_id].dup
|
|
uuid = self.class.random_uuid
|
|
volume['uuid'] = uuid
|
|
|
|
self.data[:volumes][uuid] = volume
|
|
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = volume
|
|
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|