Sha256: de45339e938401708086fe6014a23c5391c830a1156053b65da75c8bf50e2dfc
Contents?: true
Size: 511 Bytes
Versions: 11
Compression:
Stored size: 511 Bytes
Contents
require "integration/factories/collection_factory" require "integration/factories/http_health_checks_factory" class BackendServicesFactory < CollectionFactory def initialize(example) @http_health_checks = HttpHealthChecksFactory.new(example) super(Fog::Compute[:google].backend_services, example) end def cleanup super @http_health_checks.cleanup end def params params = {:name => resource_name, :health_checks => [@http_health_checks.create.self_link]} end end
Version data entries
11 entries across 9 versions & 3 rubygems