Repository URL to install this package:
|
Version:
2.3.23 ▾
|
# encoding:utf-8
module Inspec
class EachLoop < List
attr_reader :variables
attr_accessor :tests
def initialize
super
@tests = []
@variables = []
end
def add_test(t = nil)
t ||= Test.new
t.qualifier[0] = ['entry']
@tests.push(t)
t
end
def negate!
@tests.each(&:negate!)
end
def to_hash
{ qualifier: qualifier, test: @test }
end
def to_ruby
vars = variables.map(&:to_ruby).join("\n")
vars += "\n" unless vars.empty?
obj = super
all_tests = @tests.map(&:to_ruby).join("\n").gsub("\n", "\n ")
format("%s%s.each do |entry|\n %s\nend", vars, obj, all_tests)
end
end
end