Sha256: 0ecbd4064605482a0e080bcd8feead0b92fe08b47ab53b67f45ff3df33ebfa20
Contents?: true
Size: 649 Bytes
Versions: 40
Compression:
Stored size: 649 Bytes
Contents
module Fog module Network class OpenStack class Real def delete_port(port_id) request( :expects => 204, :method => 'DELETE', :path => "ports/#{port_id}" ) end end class Mock def delete_port(port_id) response = Excon::Response.new if list_ports.body['ports'].map { |r| r['id'] }.include? port_id self.data[:ports].delete(port_id) response.status = 204 response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems