mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
22 lines
542 B
Ruby
22 lines
542 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
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
|