Sha256: 3b08d5ec61123e71afd3b7c3fbcbb739fc94549468d316974fe7fed45afc5b85
Contents?: true
Size: 460 Bytes
Versions: 21
Compression:
Stored size: 460 Bytes
Contents
module Fog module Compute class Google class Mock def get_machine_type(_machine_type, _zone) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def get_machine_type(machine_type, zone) zone = zone.split("/")[-1] if zone.start_with? "http" @compute.get_machine_type(@project, zone, machine_type) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems