Sha256: fc1329cb619dfd41f85551b283473c69447ee9e34f1d36b8250a5fd4e9fb978a
Contents?: true
Size: 438 Bytes
Versions: 132
Compression:
Stored size: 438 Bytes
Contents
module Fog module Compute class Clodo class Real def get_image_details(image_id) request(:expects => [200,203], :method => 'GET', :path => "images/#{image_id}") end end class Mock def get_image_details(image_id) response = Excon::Response.new response.status = 404 response end end end end end
Version data entries
132 entries across 130 versions & 21 rubygems