free_mutant/spec/unit/mutant/matcher/class_methods/parse_spec.rb
Markus Schirp 46c9213991 Add Mutant::Matcher.{parse,from_string}
These are used in CLI to create maters from strings
2012-08-28 19:54:28 +02:00

12 lines
240 B
Ruby

require 'spec_helper'
describe Mutant::Matcher, '.parse' do
subject { object.parse(input) }
let(:input) { mock('Input') }
let(:object) { described_class }
it { should be(nil) }
it_should_behave_like 'an idempotent method'
end