mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
07dc5e3192
3 files left to go, and they're behaving oddly so I'm leaving them out in this pass. Looks like 21 deprecations left. Signed-off-by: Ryan Davis <zenspider@chef.io>
18 lines
538 B
Ruby
18 lines
538 B
Ruby
require "helper"
|
|
require "inspec/reporters"
|
|
|
|
describe Inspec::Reporters::Junit do
|
|
let(:path) { File.expand_path(File.dirname(__FILE__)) }
|
|
let(:report) do
|
|
data = JSON.parse(File.read(path + "/../mock/reporters/run_data.json"), symbolize_names: true)
|
|
Inspec::Reporters::Junit.new({ run_data: data })
|
|
end
|
|
|
|
describe "#render" do
|
|
it "confirm render output" do
|
|
cli_output = File.read(path + "/../mock/reporters/junit_output")
|
|
report.render
|
|
_(report.rendered_output).must_equal cli_output
|
|
end
|
|
end
|
|
end
|