Sha256: 633ba107359ffc0039db0a93869924e6ad3597e8cf6b9631bf55ffab458aaecd
Contents?: true
Size: 1.4 KB
Versions: 12
Compression:
Stored size: 1.4 KB
Contents
require_relative '../../spec_helper' require_lib 'reek/cli/input' RSpec.describe Reek::CLI::Input do # dummy class which includes module under test class DummyClass include Reek::CLI::Input def argv; end end subject { DummyClass.new } describe '#sources' do context 'when no source files given' do before do allow(subject).to receive(:argv).and_return([]) end context 'and input was piped' do before do allow_any_instance_of(IO).to receive(:tty?).and_return(false) expect(subject).to receive(:source_from_pipe).and_call_original end it 'should use source form pipe' do expect(subject.sources).to_not be_empty end end context 'and input was not piped' do before do allow_any_instance_of(IO).to receive(:tty?).and_return(true) expect(subject).to receive(:working_directory_as_source). and_call_original end it 'should use working directory as source' do expect(subject.sources).to_not be_empty end end end context 'when source files given' do before do allow(subject).to receive(:argv).and_return(['.']) expect(subject).to receive(:sources_from_argv).and_call_original end it 'should use sources from argv' do expect(subject.sources).to_not be_empty end end end end
Version data entries
12 entries across 12 versions & 1 rubygems