Sha256: 0127fb846f289b977bffad0555426289dba14272d647172f051a179e6234792b
Contents?: true
Size: 466 Bytes
Versions: 21
Compression:
Stored size: 466 Bytes
Contents
module Fog module Compute class Google class Mock def get_target_pool(_target_pool, _region) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def get_target_pool(target_pool, region) region = region.split("/")[-1] if region.start_with? "http" @compute.get_target_pool(@project, region, target_pool) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems