Add test for Mutant::Integration#all_tests

This commit is contained in:
Markus Schirp 2014-07-12 20:53:57 +00:00
parent 89b4774eb1
commit 13516a0cc7

View file

@ -8,6 +8,13 @@ describe Mutant::Integration do
let(:object) { class_under_test.new }
describe '#all_tests' do
subject { object.all_tests }
it { should eql([]) }
it_should_behave_like 'an idempotent method'
end
describe '#setup' do
subject { object.setup }
it_should_behave_like 'a command method'