mirror of
https://github.com/inspec/inspec
synced 2024-11-26 06:30:26 +00:00
71e72af079
Signed-off-by: Miah Johnson <miah@chia-pet.org>
13 lines
302 B
Ruby
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
|