Sha256: ecafab334e07a9b3e5d0e689d0069cd88e7bb295d77f81f9af593669e23f9e26
Contents?: true
Size: 1.59 KB
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chef-12.8.1 | spec/unit/resource_resolver_spec.rb |
chef-12.8.1-universal-mingw32 | spec/unit/resource_resolver_spec.rb |