Sha256: 01e04e04bcfc3d9ba7fa5c81cf0576a07871f1651913a919b147288e13e67c52
Contents?: true
Size: 761 Bytes
Versions: 26
Compression:
Stored size: 761 Bytes
Contents
require "integration/factories/collection_factory" require "integration/factories/servers_factory" require "integration/factories/http_health_checks_factory" class TargetPoolsFactory < CollectionFactory def initialize(example) @http_health_checks = HttpHealthChecksFactory.new(example) @servers = ServersFactory.new(example) super(Fog::Compute[:google].target_pools, example) end def cleanup super @servers.cleanup @http_health_checks.cleanup end def all @subject.all(region: TEST_REGION) end def params { :name => resource_name, :region => TEST_REGION, :instances => [@servers.create.self_link, @servers.create.self_link], :health_checks => [@http_health_checks.create.self_link] } end end
Version data entries
26 entries across 26 versions & 2 rubygems