mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
7522547f71
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
23 lines
553 B
Ruby
23 lines
553 B
Ruby
# encoding: utf-8
|
|
require 'vulcano/backend'
|
|
require_relative 'helper'
|
|
|
|
container_id = ENV['CONTAINER'] or
|
|
fail 'You must provide a container ID via CONTAINER env'
|
|
|
|
tests = ARGV
|
|
puts ['Running tests:', tests].flatten.join("\n- ")
|
|
puts ''
|
|
|
|
backends = {}
|
|
backends[:docker] = proc {
|
|
backend_conf = Vulcano::Backend.target_config({ 'host' => container_id })
|
|
backend_class = Vulcano::Backend.registry['docker']
|
|
backend_class.new(backend_conf)
|
|
}
|
|
|
|
backends.each do |type, get_backend|
|
|
tests.each do |test|
|
|
instance_eval(File.read(test))
|
|
end
|
|
end
|