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`
24 lines
601 B
Ruby
24 lines
601 B
Ruby
module Fog
|
|
module Compute
|
|
class Clodo
|
|
class Real
|
|
def server_action(id, action)
|
|
request(
|
|
:body => Fog::JSON.encode(action),
|
|
:expects => [204],
|
|
:method => 'POST',
|
|
:path => "servers/#{id}/action")
|
|
end
|
|
end
|
|
class Mock
|
|
def server_action(id, action)
|
|
raise Excon::Errors::BadRequest.new("Invalid server id #{id}.") unless id > 0
|
|
|
|
response = Excon::Response.new
|
|
response.status = 204
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|