Sha256: 98ba9da8ce011cab46f43f79aa0db4f5c344f9f437fcfa889cc83af5ac580b9e

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

#
# Copyright:: Chef Software Inc.
# 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-cli/configurable"
require "unit/fixtures/configurable/test_configurable"

describe ChefCLI::Configurable do

  let(:includer) { TestConfigurable.new }

  before { includer.reset_config! }

  it "provides chef_config" do
    expect(includer.chef_config).to eq Chef::Config
  end

  it "provides chefcli_config" do
    expect(includer.chefcli_config).to eq Chef::Config.chefcli
  end

  it "provides knife_config" do
    expect(includer.knife_config).to eq Chef::Config.knife
  end

  it "provides generator_config" do
    expect(includer.generator_config).to eq Chef::Config.chefcli.generator
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chef-cli-5.6.16 spec/unit/configurable_spec.rb
chef-cli-5.6.14 spec/unit/configurable_spec.rb
chef-cli-5.6.13 spec/unit/configurable_spec.rb
chef-cli-5.6.12 spec/unit/configurable_spec.rb
chef-cli-5.6.11 spec/unit/configurable_spec.rb
chef-cli-5.6.8 spec/unit/configurable_spec.rb