inspec/test/runner/test_ssh.rb
Dominik Richter 31a960e2b6 add ssh backend to runner kitchen tests
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-25 14:09:41 +02:00

27 lines
574 B
Ruby

# encoding: utf-8
require_relative 'helper'
require 'vulcano/backend'
backends = {}
backend_conf = Vulcano::Backend.target_config({
'target' => 'ssh://vagrant@localhost',
'key_file' => '/root/.ssh/id_rsa',
})
backends[:specinfra_ssh] = proc {
backend_class = Vulcano::Backend.registry['specinfra']
backend_class.new(backend_conf)
}
backends[:ssh] = proc {
backend_class = Vulcano::Backend.registry['ssh']
backend_class.new(backend_conf)
}
tests = ARGV
backends.each do |type, get_backend|
tests.each do |test|
instance_eval(File.read(test))
end
end