1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/compute/delete_security_group_rule.rb
Alfonso Juan Dillera b7370d640e [openstack|compute] Add requests and tests for security groups
- Added tests to already existing security group requests.
2012-04-30 10:34:58 +08:00

31 lines
771 B
Ruby

module Fog
module Compute
class OpenStack
class Real
def delete_security_group_rule(security_group_rule_id)
request(
:expects => 202,
:method => 'DELETE',
:path => "os-security-group-rules/#{security_group_rule_id}"
)
end
end
class Mock
def delete_security_group_rule(security_group_rule_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