inspec/test/functional/attributes.rb
Clinton Wolfe ed44b34509 Add functional tests for nested attributes (#3157)
* A functional test for attributes
* Add tests for nested attrs in yaml
* remove commented-out tests

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2018-06-26 07:48:20 -04:00

23 lines
No EOL
557 B
Ruby

# encoding: utf-8
require 'functional/helper'
describe 'attributes' do
include FunctionalHelper
[
'flat',
'nested',
].each do |attr_file|
it "runs OK on #{attr_file} attributes" do
cmd = 'exec '
cmd += File.join(profile_path, 'attributes')
cmd += ' --no-create-lockfile'
cmd += ' --attrs ' + File.join(profile_path, 'attributes', 'attributes', "#{attr_file}.yaml")
cmd += ' --controls ' + attr_file
out = inspec(cmd)
out.stderr.must_equal ''
out.exit_status.must_equal 0
end
end
end