mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
ca1416fb0a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
15 lines
352 B
Ruby
15 lines
352 B
Ruby
require_relative "artifact_helper"
|
|
|
|
class TestInspecArchive < Minitest::Test
|
|
parallelize_me!
|
|
|
|
def test_archive
|
|
flunk
|
|
command = "/bin/inspec archive #{TEST_CLI_OPTS}"
|
|
stdout, stderr, status = Open3.capture3(command)
|
|
|
|
assert_empty stderr.sub(/#< CLIXML\n/, "")
|
|
assert_match(/Platform Details/, stdout)
|
|
assert status
|
|
end
|
|
end
|