inspec/test/artifact/inspec_detect_test.rb

13 lines
256 B
Ruby
Raw Normal View History

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