2014-08-10 21:04:05 +00:00
|
|
|
RSpec.describe Mutant::Integration do
|
2013-09-14 00:49:04 +02:00
|
|
|
|
|
|
|
let(:class_under_test) do
|
|
|
|
Class.new(described_class)
|
|
|
|
end
|
|
|
|
|
2015-06-29 02:10:04 +00:00
|
|
|
let(:object) { class_under_test.new(Mutant::Config::DEFAULT) }
|
2013-09-14 00:49:04 +02:00
|
|
|
|
2014-07-12 21:01:51 +00:00
|
|
|
describe '#setup' do
|
|
|
|
subject { object.setup }
|
|
|
|
it_should_behave_like 'a command method'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-10 21:04:05 +00:00
|
|
|
RSpec.describe Mutant::Integration::Null do
|
2014-07-12 21:01:51 +00:00
|
|
|
|
2015-06-29 02:10:04 +00:00
|
|
|
let(:object) { described_class.new(Mutant::Config::DEFAULT) }
|
2014-07-12 21:01:51 +00:00
|
|
|
|
2015-01-24 23:12:15 +00:00
|
|
|
describe '#all_tests' do
|
2014-07-12 20:53:57 +00:00
|
|
|
subject { object.all_tests }
|
|
|
|
|
|
|
|
it { should eql([]) }
|
|
|
|
|
2014-07-12 21:01:51 +00:00
|
|
|
it_should_behave_like 'an idempotent method'
|
2013-09-14 00:49:04 +02:00
|
|
|
end
|
2015-01-24 23:12:15 +00: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-14 00:49:04 +02:00
|
|
|
end
|