Sha256: 571a0453556231588cb808935e87d4d7bf95d53dfed3982794a741d5fdf25065
Contents?: true
Size: 294 Bytes
Versions: 14
Compression:
Stored size: 294 Bytes
Contents
# frozen_string_literal: true RSpec::Matchers.define :belong_to_nlb do |nlb_arn| match do |type| return true if type.load_balancer_arns.include?(nlb_arn) ret = type.find_nlb(nlb_arn) return false unless ret type.load_balancer_arns.include?(ret.load_balancer_arn) end end
Version data entries
14 entries across 14 versions & 1 rubygems