mirror of
https://github.com/inspec/inspec
synced 2024-11-26 22:50:36 +00:00
Merge pull request #4860 from inspec/cw/win-func-input-tests
Remove skips from windows testing in 'inputs' and 'archive' functional tests
This commit is contained in:
commit
a3060c4ca8
2 changed files with 0 additions and 3 deletions
|
@ -126,7 +126,6 @@ describe "inputs" do
|
|||
|
||||
it "finds the values and does not issue any warnings" do
|
||||
output = run_result.stdout
|
||||
skip_windows!
|
||||
refute_includes output, "DEPRECATION"
|
||||
structured_output = JSON.parse(output)
|
||||
assert_equal "passed", structured_output["profiles"][0]["controls"][0]["results"][0]["status"]
|
||||
|
@ -138,7 +137,6 @@ describe "inputs" do
|
|||
it "finds the values but issues a DEPRECATION warning" do
|
||||
run = run_result
|
||||
output = run.stdout
|
||||
skip_windows!
|
||||
|
||||
assert_empty run.stderr
|
||||
assert_includes output, "DEPRECATION"
|
||||
|
|
|
@ -36,7 +36,6 @@ describe "inspec archive" do
|
|||
out = inspec("archive " + dir + " --overwrite")
|
||||
|
||||
_(out.stderr).must_equal ""
|
||||
skip_windows!
|
||||
_(out.stdout).must_include "Generate archive " + auto_dst
|
||||
_(out.stdout).must_include "Finished archive generation."
|
||||
_(File.exist?(auto_dst)).must_equal true
|
||||
|
|
Loading…
Reference in a new issue