free_mutant/spec/unit/mutant/matcher/null_spec.rb
2015-11-15 20:16:42 +00:00

10 lines
237 B
Ruby

RSpec.describe Mutant::Matcher::Null, '#call' do
let(:object) { described_class.new }
let(:env) { instance_double(Mutant::Env) }
subject { object.call(env) }
it 'returns no subjects' do
should eql([])
end
end