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:
Ryan Davis 2020-01-31 17:51:36 -08:00 committed by GitHub
commit a3060c4ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View file

@ -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"

View file

@ -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