mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
16 lines
322 B
Ruby
16 lines
322 B
Ruby
|
require_relative "artifact_helper"
|
||
|
|
||
|
class TestInspecVendor < Minitest::Test
|
||
|
parallelize_me!
|
||
|
|
||
|
def test_vendor
|
||
|
flunk
|
||
|
command = "/bin/inspec vendor #{TEST_CLI_OPTS}"
|
||
|
stdout, stderr, status = Open3.capture3(command)
|
||
|
|
||
|
assert_empty stderr.sub(/#< CLIXML\n/, "")
|
||
|
assert stdout
|
||
|
assert status
|
||
|
end
|
||
|
end
|