2018-02-08 09:06:58 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
|
2018-04-12 13:59:34 +00:00
|
|
|
describe Inspec::Reporters::Junit do
|
2018-02-08 09:06:58 +00:00
|
|
|
let(:path) { File.expand_path(File.dirname(__FILE__)) }
|
2018-04-12 13:59:34 +00:00
|
|
|
let(:report) do
|
2018-02-08 09:06:58 +00:00
|
|
|
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
|