mirror of
https://github.com/inspec/inspec
synced 2024-12-02 17:40:00 +00:00
07dc5e3192
3 files left to go, and they're behaving oddly so I'm leaving them out in this pass. Looks like 21 deprecations left. Signed-off-by: Ryan Davis <zenspider@chef.io>
25 lines
522 B
Ruby
25 lines
522 B
Ruby
require "helper"
|
|
require "fetchers/mock"
|
|
|
|
describe Fetchers::Mock do
|
|
let(:fetcher) { Fetchers::Mock }
|
|
|
|
it "registers with the fetchers registry" do
|
|
reg = Inspec::Fetcher.registry
|
|
_(reg["mock"]).must_equal fetcher
|
|
end
|
|
|
|
it "wont load nil" do
|
|
_(fetcher.resolve(nil)).must_be :nil?
|
|
end
|
|
|
|
it "wont load a string" do
|
|
_(fetcher.resolve(rand.to_s)).must_be :nil?
|
|
end
|
|
|
|
describe "applied to a map" do
|
|
it "must be resolved" do
|
|
_(fetcher.resolve({})).must_be_kind_of fetcher
|
|
end
|
|
end
|
|
end
|