mirror of
https://github.com/inspec/inspec
synced 2025-03-01 13:57:27 +00:00
12 lines
261 B
Ruby
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
|