inspec/test/unit/reporters/base_test.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

20 lines
524 B
Ruby

require 'helper'
describe Inspec::Reporters::Base 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::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