Sha256: 6f678466ea8f35c3586cb5cf5b65b7fe16d011194606ca8b9ebb2556522fc0f7

Contents?: true

Size: 902 Bytes

Versions: 7

Compression:

Stored size: 902 Bytes

Contents

require_relative '../../spec_helper'
require_lib 'reek/configuration/excluded_paths'

RSpec.describe Reek::Configuration::ExcludedPaths do
  describe '#add' do
    subject { [].extend(described_class) }

    context 'one of the given paths does not exist' do
      let(:bogus_path) { Pathname('does/not/exist') }
      let(:paths) { [SAMPLES_PATH, bogus_path] }

      it 'raises an error' do
        Reek::CLI::Silencer.silently do
          expect { subject.add(paths) }.to raise_error(SystemExit)
        end
      end
    end

    context 'one of given paths is a file' do
      let(:file_as_path) { SAMPLES_PATH.join('inline.rb') }
      let(:paths) { [SAMPLES_PATH, file_as_path] }

      it 'raises an error if one of the given paths is a file' do
        Reek::CLI::Silencer.silently do
          expect { subject.add(paths) }.to raise_error(SystemExit)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
reek-3.8.0 spec/reek/configuration/excluded_paths_spec.rb
reek-3.7.1 spec/reek/configuration/excluded_paths_spec.rb
reek-3.7.0 spec/reek/configuration/excluded_paths_spec.rb
reek-3.6.1 spec/reek/configuration/excluded_paths_spec.rb
reek-3.6.0 spec/reek/configuration/excluded_paths_spec.rb
reek-3.5.0 spec/reek/configuration/excluded_paths_spec.rb
reek-3.4.1 spec/reek/configuration/excluded_paths_spec.rb