Sha256: 54f3f2f609e78491b051a408b82b4ffb10d6482eee93f967807f153289be7046
Contents?: true
Size: 743 Bytes
Versions: 39
Compression:
Stored size: 743 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 do |snap| snap['id'] == snapshot_id end response.status = 200 response.body = {'snapshot' => snapshot} response else raise Fog::Compute::OpenStack::NotFound end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems