mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
Fixed failing test
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
This commit is contained in:
parent
38206d80e8
commit
6f4bd2413d
3 changed files with 3 additions and 10 deletions
|
@ -3,9 +3,3 @@ control 'CONTROL super' do
|
||||||
skip 'This will be skipped super intentionally.'
|
skip 'This will be skipped super intentionally.'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
control 'CONTROL database' do
|
|
||||||
describe mysql_session do
|
|
||||||
its('something') { should be 3 }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
|
@ -97,7 +97,7 @@ describe "inspec exec with junit formatter" do
|
||||||
_(run_result.stderr).must_equal ""
|
_(run_result.stderr).must_equal ""
|
||||||
_(schema.validate(doc)).must_be_empty
|
_(schema.validate(doc)).must_be_empty
|
||||||
suite = doc.xpath("//testsuite").first
|
suite = doc.xpath("//testsuite").first
|
||||||
_(suite.attr("skipped")).must_equal "2"
|
_(suite.attr("skipped")).must_equal "1"
|
||||||
testcase = doc.xpath("//testcase").first
|
testcase = doc.xpath("//testcase").first
|
||||||
_(testcase.xpath("//skipped")).wont_be_empty
|
_(testcase.xpath("//skipped")).wont_be_empty
|
||||||
end
|
end
|
||||||
|
|
|
@ -299,8 +299,7 @@ Test Summary: 0 successful, 0 failures, 0 skipped
|
||||||
|
|
||||||
it "exits with an error" do
|
it "exits with an error" do
|
||||||
_(stdout).must_include "skippy\n ↺ This will be skipped super intentionally.\n"
|
_(stdout).must_include "skippy\n ↺ This will be skipped super intentionally.\n"
|
||||||
_(stdout).must_include " ↺ CONTROL database: MySQL Session\n ↺ Can't run MySQL SQL checks without authentication\n"
|
_(stdout).must_include "Profile Summary: 0 successful controls, 0 control failures, 1 control skipped\nTest Summary: 0 successful, 0 failures, 1 skipped\n"
|
||||||
_(stdout).must_include "Profile Summary: 0 successful controls, 0 control failures, 2 controls skipped\nTest Summary: 0 successful, 0 failures, 2 skipped\n"
|
|
||||||
|
|
||||||
_(stderr).must_equal ""
|
_(stderr).must_equal ""
|
||||||
|
|
||||||
|
@ -312,7 +311,7 @@ Test Summary: 0 successful, 0 failures, 0 skipped
|
||||||
let(:out) { inspec("exec " + File.join(profile_path, "skippy-controls") + " --no-distinct-exit --no-create-lockfile") }
|
let(:out) { inspec("exec " + File.join(profile_path, "skippy-controls") + " --no-distinct-exit --no-create-lockfile") }
|
||||||
|
|
||||||
it "exits with code 0 and skipped tests in output" do
|
it "exits with code 0 and skipped tests in output" do
|
||||||
_(stdout).must_include "Profile Summary: 0 successful controls, 0 control failures, 2 controls skipped\nTest Summary: 0 successful, 0 failures, 2 skipped\n"
|
_(stdout).must_include "Profile Summary: 0 successful controls, 0 control failures, 1 control skipped\nTest Summary: 0 successful, 0 failures, 1 skipped\n"
|
||||||
|
|
||||||
_(stderr).must_equal ""
|
_(stderr).must_equal ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue