Sha256: 27f1a54dd977155913f9c41a7100f122dd781d741d65300b8c05064d4c2b1517
Contents?: true
Size: 828 Bytes
Versions: 39
Compression:
Stored size: 828 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
39 entries across 37 versions & 3 rubygems