Sha256: 44ff54ef3e03fe3fa6db857737e0d6e411e907d30d29d5165aa51fdd6336dc2d
Contents?: true
Size: 459 Bytes
Versions: 86
Compression:
Stored size: 459 Bytes
Contents
module Fog module Compute class Joyent class Mock def list_keys response = Excon::Response.new response.status = 200 response.body = self.data[:keys].values response end end class Real def list_keys request( :expects => 200, :method => :'GET', :path => '/my/keys' ) end end # Real end end end
Version data entries
86 entries across 86 versions & 16 rubygems