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
780 B
Ruby
31 lines
780 B
Ruby
module Fog
|
|
module Compute
|
|
class CloudSigma
|
|
class Real
|
|
def create_server(data)
|
|
create_request("servers/", data)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def create_server(data)
|
|
uuid = self.class.random_uuid
|
|
|
|
defaults = {'uuid' => uuid,
|
|
'status' => 'stopped',
|
|
'smp' => 1,
|
|
'hv_relaxed' => false,
|
|
'hv_tsc' => false,
|
|
'enable_numa' => false,
|
|
'cpus_instead_of_cores' => false,
|
|
'drives' => [],
|
|
'nics' => [],
|
|
'tags' => []
|
|
}
|
|
|
|
mock_create(:servers, 202, data, uuid, defaults)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|