mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
32 lines
654 B
Ruby
32 lines
654 B
Ruby
|
# encoding: utf-8
|
||
|
# author: Dominik Richter
|
||
|
# author: Christoph Hartmann
|
||
|
|
||
|
require 'helper'
|
||
|
|
||
|
describe Fetchers::Local do
|
||
|
let(:fetcher) { Fetchers::Local }
|
||
|
|
||
|
it 'registers with the fetchers registry' do
|
||
|
reg = Inspec::Fetcher.registry
|
||
|
_(reg['local']).must_equal fetcher
|
||
|
end
|
||
|
|
||
|
describe 'applied to this file' do
|
||
|
let(:res) { fetcher.resolve(__FILE__) }
|
||
|
|
||
|
it 'must be resolved' do
|
||
|
_(res).must_be_kind_of fetcher
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe 'applied to this folder' do
|
||
|
let(:path) { File.dirname(__FILE__) }
|
||
|
let(:res) { fetcher.resolve(path) }
|
||
|
|
||
|
it 'must be resolved' do
|
||
|
_(res).must_be_kind_of fetcher
|
||
|
end
|
||
|
end
|
||
|
end
|