Sha256: 8ecd607a3c9d07b34ac4ef578284de91a288ee7794eb574b73b7dceb7565d5c8
Contents?: true
Size: 387 Bytes
Versions: 26
Compression:
Stored size: 387 Bytes
Contents
require "integration/factories/collection_factory" class InstanceGroupsFactory < CollectionFactory def initialize(example) super(Fog::Compute[:google].instance_groups, example) end def get(identity) @subject.get(identity, TEST_ZONE) end def all @subject.all(zone: TEST_ZONE) end def params { :name => resource_name, :zone => TEST_ZONE } end end
Version data entries
26 entries across 26 versions & 2 rubygems