Sha256: 491c284af242b03464e1937667df155d68affa59e22f08b9ded6f31ed54820f1
Contents?: true
Size: 408 Bytes
Versions: 20
Compression:
Stored size: 408 Bytes
Contents
module Fog module Compute class Google class Mock def get_machine_type(_machine_type, _zone) Fog::Mock.not_implemented 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
20 entries across 20 versions & 1 rubygems