mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Intercept width warning message for plugin list
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
parent
4f691564e4
commit
d86112bad7
1 changed files with 8 additions and 2 deletions
|
@ -1,7 +1,13 @@
|
|||
require_relative "artifact_helper"
|
||||
|
||||
class TestInspecPlugin < ArtifactTest
|
||||
def test_plugin_lsit
|
||||
assert_artifact("plugin list")
|
||||
def test_plugin_list
|
||||
# This one is custom because it emits a special warning to stderr
|
||||
inspec_command = "plugin list"
|
||||
stdout, stderr, status = run_cmd "inspec #{inspec_command} #{TEST_CLI_OPTS}"
|
||||
|
||||
assert_empty stderr.sub(/#< CLIXML\n/, "").sub(/The table size exceeds the currently set width\.Defaulting to vertical orientation\.\n/, "")
|
||||
assert stdout
|
||||
assert status
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue