spec/reek/configuration/excluded_paths_spec.rb in reek-3.8.0 vs spec/reek/configuration/excluded_paths_spec.rb in reek-3.8.1
- old
+ new
@@ -3,20 +3,9 @@
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