mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
23 lines
557 B
Ruby
23 lines
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
|