inspec/test/unit/reporters/base_test.rb
Ryan Davis b1c2af209b Corresponding fixes for the move from test/unit/mock to test/fixtures.
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 19:20:12 -08:00

20 lines
552 B
Ruby

require "helper"
require "inspec/reporters"
describe Inspec::Reporters::Base do
let(:path) { File.expand_path(File.dirname(__FILE__)) }
let(:report) do
data = JSON.parse(File.read("test/fixtures//reporters/run_data.json"), symbolize_names: true)
Inspec::Reporters::Base.new({ run_data: data })
end
describe "#output" do
it "append to output" do
report.output ""
report.output "test"
report.output ""
assert = report.instance_variable_get(:@output)
_(assert).must_equal "\ntest\n\n"
end
end
end