Sha256: 642971a1084b1be628a8dbc3e4765070eb29bbe0a2605bfbab5d44b41e4ff230
Contents?: true
Size: 573 Bytes
Versions: 88
Compression:
Stored size: 573 Bytes
Contents
module Fog module Compute class Joyent class Mock def delete_key(keyname) if self.data[:keys].delete(keyname) response = Excon::Response.new response.status = 204 response else raise Excon::Errors::NotFound, "Not Found" end end end class Real def delete_key(name) request( :method => "DELETE", :path => "/my/keys/#{name}", :expects => 204 ) end end # Real end end end
Version data entries
88 entries across 88 versions & 16 rubygems