Sha256: fe7d4b3e5f66d975a7a6bb01b8999330da83fbe3afe20e14cf33d64a5c442238
Contents?: true
Size: 659 Bytes
Versions: 125
Compression:
Stored size: 659 Bytes
Contents
module Fog module Compute class OpenStack class Real def delete_flavor(flavor_id) request( :expects => 202, :method => 'DELETE', :path => "flavors/#{flavor_id}" ) end end class Mock def delete_flavor(flavor_id) response = Excon::Response.new response.status = 202 response.headers = { "Content-Type" => "text/html; charset=UTF-8", "Content-Length" => "0", "Date" => Date.new } response end end # mock end # openstack end # compute end # fog
Version data entries
125 entries across 125 versions & 17 rubygems