mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
41c3dfccfe
Signed-off-by: Piotr Gospodarek <pgospodarek@outlook.com>
19 lines
527 B
Ruby
19 lines
527 B
Ruby
# encoding: utf-8
|
|
|
|
require 'helper'
|
|
|
|
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
|