inspec/test/unit/reporters/yaml_test.rb
Ryan Davis 07dc5e3192 First pass at cleaning deprecations for old minitest/spec-style tests.
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>
2019-10-03 13:45:19 -07:00

18 lines
496 B
Ruby

require "helper"
require "inspec/reporters"
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