Sha256: dbe045311bdacfbc5942c11735f29d67863d56e8ee211ba6e69b7a08fc96165b
Contents?: true
Size: 728 Bytes
Versions: 11
Compression:
Stored size: 728 Bytes
Contents
module Fog module Compute class OpenStack class Real def get_snapshot_details(snapshot_id) request( :expects => 200, :method => 'GET', :path => "os-snapshots/#{snapshot_id}" ) end end class Mock def get_snapshot_details(snapshot_id) response = Excon::Response.new if snapshot = list_snapshots_detail.body['snapshots'].find{ |_| _['id'] == snapshot_id } response.status = 200 response.body = { 'snapshot' => snapshot } response else raise Fog::Compute::OpenStack::NotFound end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems