Sha256: a5cdb6a3bc0dbaa247e4f7e285fa709fc18fae60d819775136a10befe13b9096
Contents?: true
Size: 384 Bytes
Versions: 20
Compression:
Stored size: 384 Bytes
Contents
module Fog module Compute class Google class Mock def get_instance_group(_group_name, _zone, _project = @project) Fog::Mock.not_implemented end end class Real def get_instance_group(group_name, zone, project = @project) @compute.get_instance_group(project, zone, group_name) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems