Sha256: 118d1e80d2f4637a124faa8e5e92c30cd3fa0b626db046d57c1a04d22d8aa741

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

require 'spec_helper'

describe 'ghostbuster_facts' do
  let(:code) { "Facter.add('foo')" }

  context 'with fix disabled' do

    context 'when fact is not used' do
      let(:path) { "./spec/fixtures/modules/foo/lib/facter/multi.rb" }

      it 'should detect one problem' do
        expect(problems).to have(2).problems
      end

      it 'should create a warning' do
        expect(problems).to contain_warning("Fact multi1 seems unused")
      end

      it 'should create a warning' do
        expect(problems).to contain_warning("Fact multi2 seems unused")
      end
    end

    context 'when fact is used in a string' do
      let(:path) { "./spec/fixtures/modules/foo/lib/facter/foo.rb" }

      it 'should not detect any problem' do
        expect(problems).to have(0).problems
      end
    end

    context 'when fact is used in manifest' do
      let(:path) { "./spec/fixtures/modules/foo/lib/facter/bar.rb" }

      it 'should not detect any problem' do
        expect(problems).to have(0).problems
      end
    end

    context 'when fact is used in a template' do
      let(:path) { "./spec/fixtures/modules/foo/lib/facter/baz.rb" }

      it 'should not detect any problem' do
        expect(problems).to have(0).problems
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puppet-ghostbuster-0.7.1 spec/puppet-lint/plugins/ghostbuster_facts_spec.rb
puppet-ghostbuster-0.7.0 spec/puppet-lint/plugins/ghostbuster_facts_spec.rb