free_mutant/spec/unit/mutant/integration_spec.rb

44 lines
845 B
Ruby
Raw Normal View History

RSpec.describe Mutant::Integration do
2013-09-13 18:49:04 -04:00
let(:class_under_test) do
Class.new(described_class)
end
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
RSpec.describe Mutant::Integration::Null do
2014-07-12 17:01:51 -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
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