free_mutant/spec/unit/mutant/cli/class_methods/run_spec.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2012-08-28 12:57:39 -04:00
require 'spec_helper'
describe Mutant::CLI, '.run' do
subject { object.run(argv) }
let(:object) { described_class }
let(:argv) { mock('ARGV') }
let(:attributes) { mock('Options') }
let(:runner) { mock('Runner', :success? => success) }
let(:instance) { mock(described_class.name, :attributes => attributes) }
2012-08-28 12:57:39 -04:00
before do
described_class.stub(:new => instance)
Mutant::Runner::Config.stub(:run => runner)
2012-08-28 12:57:39 -04:00
end
context 'when runner is successful' do
let(:success) { true }
2012-08-28 12:57:39 -04:00
it { should be(0) }
it 'should run with attributes' do
Mutant::Runner::Config.should_receive(:run).with(instance).and_return(runner)
should be(0)
end
end
context 'when runner fails' do
let(:success) { false }
it { should be(1) }
it 'should run with attributes' do
Mutant::Runner::Config.should_receive(:run).with(instance).and_return(runner)
should be(1)
end
2012-08-28 12:57:39 -04:00
end
2012-08-28 12:57:39 -04:00
end