inspec/test/artifact/inspec_detect_test.rb
Miah Johnson 6e88b3ceb9 Fix rubocop warnings
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 21:01:19 -07:00

12 lines
261 B
Ruby

require "minitest/autorun"
class TestArtifactDetect < Minitest::Test
def test_detect
out, err = capture_subprocess_io do
assert system("inspec detect --no-color")
end
assert_match %r{/Platform Details/}, out
assert_empty err
end
end