Sha256: c9db2ddeaf04afc2efd644964021e2b51a61dd0ee1b018efab6857b65efa6b3f
Contents?: true
Size: 833 Bytes
Versions: 8
Compression:
Stored size: 833 Bytes
Contents
module Fog module Compute class OpenStack class Real def get_volume_details(volume_id) request( :expects => 200, :method => 'GET', :path => "os-volumes/#{volume_id}" ) end end class Mock def get_volume_details(volume_id) response = Excon::Response.new if data = self.data[:volumes][volume_id] if data['status'] == 'creating' \ && Time.now - Time.parse(data['createdAt']) >= Fog::Mock.delay data['status'] = 'available' end response.status = 200 response.body = { 'volume' => data } response else raise Fog::Compute::OpenStack::NotFound end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems