Sha256: c85ad7dc64108f11122002ea7ea1d75ec7593594c195b93c83b70664d59722b4
Contents?: true
Size: 691 Bytes
Versions: 29
Compression:
Stored size: 691 Bytes
Contents
module Fog module Compute class DigitalOcean class Real def power_off_server( id ) request( :expects => [200], :method => 'GET', :path => "droplets/#{id}/power_off" ) end end class Mock def power_off_server( id ) response = Excon::Response.new response.status = 200 server = self.data[:servers].find { |s| s['id'] } server['status'] = 'off' if server response.body = { "event_id" => Fog::Mock.random_numbers(1).to_i, "status" => "OK" } response end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems