Sha256: 1b4391b540f4d63cc7702bc84dcec9b82bb13c59f4738b029f6e2f1fcfb8e95d
Contents?: true
Size: 685 Bytes
Versions: 25
Compression:
Stored size: 685 Bytes
Contents
module Fog module Compute class OpenStack class Real def release_address(address_id) request( :expects => [200, 202], :method => 'DELETE', :path => "os-floating-ips/#{address_id}" ) end end class Mock def release_address(_address_id) response = Excon::Response.new response.status = 202 response.headers = { "Content-Type" => "text/html; charset=UTF-8", "Content-Length" => "0", "Date" => Date.new } response.body = {} response end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems