inspec/test/artifact/inspec_plugin_test.rb
Miah Johnson 71e72af079 Change flunk to skip. drop parallelize me until multiple tests
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-11-07 16:19:19 -08:00

13 lines
302 B
Ruby

require_relative "artifact_helper"
class TestInspecPlugin < Minitest::Test
def test_plugin
skip
command = "/bin/inspec plugin #{TEST_CLI_OPTS}"
stdout, stderr, status = Open3.capture3(command)
assert_empty stderr.sub(/#< CLIXML\n/, "")
assert stdout
assert status
end
end