mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
20 lines
485 B
Ruby
20 lines
485 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
require 'helper'
|
||
|
|
||
|
describe Inspec::Reporters::Yaml do
|
||
|
let(:path) { File.expand_path(File.dirname(__FILE__)) }
|
||
|
let(:report) do
|
||
|
data = YAML.load_file(path + '/../mock/reporters/run_data.yml')
|
||
|
Inspec::Reporters::Yaml.new({ run_data: data })
|
||
|
end
|
||
|
|
||
|
describe '#render' do
|
||
|
it 'confirm render output' do
|
||
|
output = File.read(path + '/../mock/reporters/yaml_output')
|
||
|
report.render
|
||
|
report.rendered_output.must_equal output
|
||
|
end
|
||
|
end
|
||
|
end
|