Sha256: 01b3c4687ff0f0dab2b70bcb981b62c1741b48e4a74b6c3aca402c4cadab27aa
Contents?: true
Size: 709 Bytes
Versions: 11
Compression:
Stored size: 709 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 params params = {:name => resource_name, :region => TEST_REGION, :instances => [@servers.create.self_link], :healthChecks => [@http_health_checks.create.self_link]} end end
Version data entries
11 entries across 9 versions & 3 rubygems