lib/fog/cloudatcost/requests/power_on.rb in fog-cloudatcost-0.2.3 vs lib/fog/cloudatcost/requests/power_on.rb in fog-cloudatcost-0.4.0

- old
+ new

@@ -1,31 +1,33 @@ +# frozen_string_literal: true + module Fog module Compute class CloudAtCost class Real def power_on(id) - body = { :sid => "#{id}", :action => 'poweron' } + body = { sid: id.to_s, action: 'poweron' } request( - :expects => [200], - :method => 'POST', - :path => 'api/v1/powerop.php', - :body => body, + expects: [200], + method: 'POST', + path: 'api/v1/powerop.php', + body: body ) end end class Mock - def power_on(id) - response = Excon::Response.new - response.status = 200 - response.body = { - 'server_id' => Fog::Mock.random_numbers(1).to_i, + def power_on(_id) + response = Excon::Response.new + response.status = 200 + response.body = { + 'server_id' => Fog::Mock.random_numbers(1).to_i, 'api' => 'v1', 'status' => 'ok', 'result' => 'successful', 'action' => 'poweron', - 'time' => 12312323, - 'taskid' => 123123123123 + 'time' => 12_312_323, + 'taskid' => 123_123_123_123 } response end end end