mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
Skip runner API tests on windows
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
parent
2ef151dd56
commit
1f49ae4046
1 changed files with 2 additions and 0 deletions
|
@ -133,6 +133,7 @@ describe "inputs" do
|
||||||
|
|
||||||
it "finds the values and does not issue any warnings" do
|
it "finds the values and does not issue any warnings" do
|
||||||
output = run_result.stdout
|
output = run_result.stdout
|
||||||
|
skip_windows!
|
||||||
refute_includes output, "DEPRECATION"
|
refute_includes output, "DEPRECATION"
|
||||||
structured_output = JSON.parse(output)
|
structured_output = JSON.parse(output)
|
||||||
assert_equal "passed", structured_output["profiles"][0]["controls"][0]["results"][0]["status"]
|
assert_equal "passed", structured_output["profiles"][0]["controls"][0]["results"][0]["status"]
|
||||||
|
@ -143,6 +144,7 @@ describe "inputs" do
|
||||||
let(:runner_options) { common_options.merge({ attributes: { test_input_01: "value_from_api" } }) }
|
let(:runner_options) { common_options.merge({ attributes: { test_input_01: "value_from_api" } }) }
|
||||||
it "finds the values but issues a DEPRECATION warning" do
|
it "finds the values but issues a DEPRECATION warning" do
|
||||||
output = run_result.stdout
|
output = run_result.stdout
|
||||||
|
skip_windows!
|
||||||
assert_includes output, "DEPRECATION"
|
assert_includes output, "DEPRECATION"
|
||||||
structured_output = JSON.parse(output.lines.reject { |l| l.include? "DEPRECATION" }.join("\n") )
|
structured_output = JSON.parse(output.lines.reject { |l| l.include? "DEPRECATION" }.join("\n") )
|
||||||
assert_equal "passed", structured_output["profiles"][0]["controls"][0]["results"][0]["status"]
|
assert_equal "passed", structured_output["profiles"][0]["controls"][0]["results"][0]["status"]
|
||||||
|
|
Loading…
Reference in a new issue