Sha256: a9c8f53f5fea55396f1b07a6b576ca7eea1066a24b71e61f8d6b176b7e6fe055
Contents?: true
Size: 804 Bytes
Versions: 52
Compression:
Stored size: 804 Bytes
Contents
module Fog module Compute class OpenStack class Real def delete_security_group(security_group_id) request( :expects => 202, :method => 'DELETE', :path => "os-security-groups/#{security_group_id}" ) end end class Mock def delete_security_group(security_group_id) self.data[:security_groups].delete security_group_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 # openstack end # compute end #fog
Version data entries
52 entries across 52 versions & 7 rubygems