inspec/test/unit/fetchers/source_reader_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

16 lines
336 B
Ruby

# author: Dominik Richter
# author: Christoph Hartmann
require 'helper'
describe Inspec::SourceReader do
let(:reg) { Inspec::SourceReader }
it 'resolves nil-targets to nil' do
_(reg.resolve(nil)).must_be_nil
end
it 'only supports Fetchers' do
proc { reg.resolve("not supported") }.must_raise StandardError
end
end