Add specs for null reporter
This commit is contained in:
parent
df6ae98fb7
commit
908f285261
1 changed files with 11 additions and 0 deletions
11
spec/unit/mutant/reporter/null_spec.rb
Normal file
11
spec/unit/mutant/reporter/null_spec.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe Mutant::Reporter::Null do
|
||||
let(:object) { described_class.new }
|
||||
|
||||
describe '#report' do
|
||||
subject { object.report(double('some input')) }
|
||||
|
||||
it_should_behave_like 'a command method'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue