6df5811a87
* I dislike the global infection RSpec does. This commit is a first step to get a rid of it. * Also remove the need for `require 'spec_helper` in each spec file with adjusting `.rspec`.
21 lines
471 B
Ruby
21 lines
471 B
Ruby
RSpec.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
|
|
|
|
describe '#warn' do
|
|
subject { object.warn(double('some input')) }
|
|
|
|
it_should_behave_like 'a command method'
|
|
end
|
|
|
|
describe '#progress' do
|
|
subject { object.progress(double('some input')) }
|
|
|
|
it_should_behave_like 'a command method'
|
|
end
|
|
end
|