2018-09-12 14:21:24 +00:00
|
|
|
# frozen_string_literal: true
|
2018-09-12 13:15:43 +00:00
|
|
|
|
2014-08-10 21:04:05 +00:00
|
|
|
RSpec.describe Mutant::Reporter::Null do
|
2015-11-15 20:16:42 +00:00
|
|
|
let(:object) { described_class.new }
|
|
|
|
let(:value) { instance_double(Object) }
|
2014-05-11 14:16:50 +00:00
|
|
|
|
2015-11-22 17:13:47 +00:00
|
|
|
%i[progress report start warn].each do |name|
|
|
|
|
describe "##{name}" do
|
|
|
|
subject { object.public_send(name, value) }
|
2014-05-11 14:16:50 +00:00
|
|
|
|
2015-11-22 17:13:47 +00:00
|
|
|
it_should_behave_like 'a command method'
|
|
|
|
end
|
2014-07-03 21:16:12 +00:00
|
|
|
end
|
2014-05-11 14:16:50 +00:00
|
|
|
end
|