2014-08-10 17:04:05 -04:00
|
|
|
RSpec.describe Mutant::Integration do
|
2013-09-13 18:49:04 -04:00
|
|
|
|
|
|
|
let(:class_under_test) do
|
|
|
|
Class.new(described_class)
|
|
|
|
end
|
|
|
|
|
2015-06-28 22:10:04 -04:00
|
|
|
let(:object) { class_under_test.new(Mutant::Config::DEFAULT) }
|
2013-09-13 18:49:04 -04:00
|
|
|
|
2014-07-12 17:01:51 -04:00
|
|
|
describe '#setup' do
|
|
|
|
subject { object.setup }
|
|
|
|
it_should_behave_like 'a command method'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-10 17:04:05 -04:00
|
|
|
RSpec.describe Mutant::Integration::Null do
|
2014-07-12 17:01:51 -04:00
|
|
|
|
2015-06-28 22:10:04 -04:00
|
|
|
let(:object) { described_class.new(Mutant::Config::DEFAULT) }
|
2014-07-12 17:01:51 -04:00
|
|
|
|
2015-01-24 18:12:15 -05:00
|
|
|
describe '#all_tests' do
|
2014-07-12 16:53:57 -04:00
|
|
|
subject { object.all_tests }
|
|
|
|
|
|
|
|
it { should eql([]) }
|
|
|
|
|
2014-07-12 17:01:51 -04:00
|
|
|
it_should_behave_like 'an idempotent method'
|
2013-09-13 18:49:04 -04:00
|
|
|
end
|
2015-01-24 18:12:15 -05:00
|
|
|
|
|
|
|
describe '#call' do
|
|
|
|
let(:tests) { double('Tests') }
|
|
|
|
|
|
|
|
subject { object.call(tests) }
|
|
|
|
|
|
|
|
it 'returns test result' do
|
|
|
|
should eql(
|
|
|
|
Mutant::Result::Test.new(
|
|
|
|
tests: tests,
|
|
|
|
runtime: 0.0,
|
|
|
|
passed: true,
|
|
|
|
output: ''
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2013-09-13 18:49:04 -04:00
|
|
|
end
|