Sha256: 82d0000ec9c7829f9da2fe03414c65705cd89883e8ad91715f2176542bb29efe

Contents?: true

Size: 1.54 KB

Versions: 11

Compression:

Stored size: 1.54 KB

Contents

#
# Author:: Ranjib Dey
# Copyright:: Copyright (c) 2015 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

11 entries across 11 versions & 1 rubygems

Version Path
chef-12.6.0 spec/unit/resource_resolver_spec.rb
chef-12.6.0-universal-mingw32 spec/unit/resource_resolver_spec.rb
chef-12.5.1-universal-mingw32 spec/unit/resource_resolver_spec.rb
chef-12.5.1 spec/unit/resource_resolver_spec.rb
chef-12.4.3-universal-mingw32 spec/unit/resource_resolver_spec.rb
chef-12.4.3 spec/unit/resource_resolver_spec.rb
chef-12.4.2-universal-mingw32 spec/unit/resource_resolver_spec.rb
chef-12.4.2 spec/unit/resource_resolver_spec.rb
chef-12.5.0.alpha.1 spec/unit/resource_resolver_spec.rb
chef-12.4.1-universal-mingw32 spec/unit/resource_resolver_spec.rb
chef-12.4.1 spec/unit/resource_resolver_spec.rb