WIP profile check on inheritance profiles

This commit is contained in:
Dominik Richter 2016-03-16 08:39:19 +01:00
parent 4b7188418b
commit 26c34c3487

View file

@ -31,6 +31,11 @@ describe 'Inspec::InspecCLI' do
out.stdout.must_match /Valid.*true/
out.exit_status.must_equal 0
end
it 'archive is successful' do
out = inspec('archive ' + path + ' --overwrite')
out.exit_status.must_equal 0
end
end
describe 'example inheritance profile' do
@ -47,5 +52,10 @@ describe 'Inspec::InspecCLI' do
out.stdout.must_match /Valid.*true/
out.exit_status.must_equal 0
end
it 'archive is successful even without --profiles-path' do
out = inspec('archive ' + path + ' --overwrite')
out.exit_status.must_equal 0
end
end
end