Sha256: 9bb03641afee8c40cfb87e6b4bb73e2f80a06fae22f8a186d36166e9143a8fe4
Contents?: true
Size: 682 Bytes
Versions: 76
Compression:
Stored size: 682 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 # mock end end end
Version data entries
76 entries across 76 versions & 10 rubygems