Sha256: e73e3a7d7b9a5862f6690821a2c952ffce0c06ddef549bc58f5a86b3c3c04e3f
Contents?: true
Size: 1.59 KB
Versions: 30
Compression:
Stored size: 1.59 KB
Contents
# # Author:: Ranjib Dey # Copyright:: Copyright 2015-2016, Ranjib Dey <ranjib@linux.com>. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "spec_helper" require "chef/resource_resolver" describe Chef::ResourceResolver do it "#resolve" do expect(described_class.resolve(:execute)).to eq(Chef::Resource::Execute) end it "#list" do expect(described_class.list(:package)).to_not be_empty end context "instance methods" do let(:resolver) do described_class.new(Chef::Node.new, "execute") end it "#resolve" do expect(resolver.resolve).to eq Chef::Resource::Execute end it "#list" do expect(resolver.list).to eq [ Chef::Resource::Execute ] end it "#provided_by? returns true when resource class is in the list" do expect(resolver.provided_by?(Chef::Resource::Execute)).to be_truthy end it "#provided_by? returns false when resource class is not in the list" do expect(resolver.provided_by?(Chef::Resource::File)).to be_falsey end end end
Version data entries
30 entries across 30 versions & 1 rubygems