Sha256: 71a9754e887cd9e23b8ed0adf6132cd6b4857affafdba49ac0b2105557c6a19d
Contents?: true
Size: 389 Bytes
Versions: 21
Compression:
Stored size: 389 Bytes
Contents
module Fog module Compute class Google class Mock def start_server(_identity, _zone) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def start_server(identity, zone) @compute.start_instance(@project, zone.split("/")[-1], identity) end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems