#7460 ignore failing tests caused by #e939c6a removing CEF module

Fixes #7462
This commit is contained in:
Armin 2017-06-15 14:24:01 +02:00 committed by Armin Braun
parent 24d2faba10
commit 448bda167f

View file

@ -315,6 +315,7 @@ describe LogStash::Runner do
context "with a good configuration" do context "with a good configuration" do
let(:module_string) { "cef" } let(:module_string) { "cef" }
it "should exit successfully" do it "should exit successfully" do
skip("Skipped until cef module is added back to the codebase as explained in #7455")
expect(logger).not_to receive(:fatal) expect(logger).not_to receive(:fatal)
expect(subject.run(args)).to eq(0) expect(subject.run(args)).to eq(0)
end end
@ -348,6 +349,7 @@ describe LogStash::Runner do
end end
end end
it "should log fatally and return a bad exit code" do it "should log fatally and return a bad exit code" do
skip("Skipped until cef module is added back to the codebase as explained in #7455")
expect(subject.run("bin/logstash", args)).to eq(1) expect(subject.run("bin/logstash", args)).to eq(1)
end end
end end
@ -378,6 +380,7 @@ describe LogStash::Runner do
expect(logger).not_to receive(:error) expect(logger).not_to receive(:error)
end end
it "should not terminate logstash" do it "should not terminate logstash" do
skip("Skipped until cef module is added back to the codebase as explained in #7455")
expect(subject.run("bin/logstash", args)).to be_nil expect(subject.run("bin/logstash", args)).to be_nil
end end
end end