Sha256: 78d35ea8ea2735d5750458c92a2c5d36aa46be04de2fd7afb31ffaab7feb761d
Contents?: true
Size: 404 Bytes
Versions: 20
Compression:
Stored size: 404 Bytes
Contents
module Fog module Compute class Google class Mock def get_snapshot(_snap_name) Fog::Mock.not_implemented end end class Real def get_snapshot(snap_name, project = @project) raise ArgumentError.new "snap_name must not be nil." if snap_name.nil? @compute.get_snapshot(project, snap_name) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems