Sha256: b10e42db0d75c8b3f28957bc322d1da61dd44d03501bc64fe809488d759170eb

Contents?: true

Size: 710 Bytes

Versions: 5

Compression:

Stored size: 710 Bytes

Contents

require 'spec_helper'

describe 'ghostbuster_defines' do

  context 'with fix disabled' do

    context 'when define is not used' do
      let(:code) { "define foo::foo {}" }
      let(:path) { "./modules/foo/manifests/foo.pp" }

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

      it 'should create a warning' do
        expect(problems).to contain_warning('Define Foo::Foo seems unused')
      end
    end

    context 'when define is used' do
      let(:code) { "define bar::foo {}" }
      let(:path) { "./modules/bar/manifests/foo.pp" }

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
puppet-ghostbuster-0.9.0 spec/puppet-lint/plugins/ghostbuster_defines_spec.rb
puppet-ghostbuster-0.8.0 spec/puppet-lint/plugins/ghostbuster_defines_spec.rb
puppet-ghostbuster-0.7.3 spec/puppet-lint/plugins/ghostbuster_defines_spec.rb
puppet-ghostbuster-0.7.2 spec/puppet-lint/plugins/ghostbuster_defines_spec.rb
puppet-ghostbuster-0.7.1 spec/puppet-lint/plugins/ghostbuster_defines_spec.rb