1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[digitalocean|compute] added shutdown_server mock code

This commit is contained in:
Sergio Rubio 2013-03-18 12:53:07 +01:00
parent 1ed6aa1b06
commit 3ea97fb23f

View file

@ -16,7 +16,18 @@ module Fog
class Mock
def shutdown_server( id )
Fog::Mock.not_implemented
response = Excon::Response.new
response.status = 200
server = self.data[:servers].find { |s| s['id'] == id }
# Simulate reboot
server['status'] = 'off' if server
response.body = {
"event_id" => Fog::Mock.random_numbers(1).to_i,
"status" => "OK"
}
response
end
end