free_mutant/spec/unit/mutant/mutator/literal/symbol_spec.rb
Markus Schirp bb9809fa39 Reorganize unit specs.
* The old nameing did not make any sense. Sorry for not useing git mv.
2012-08-01 14:13:57 +02:00

17 lines
325 B
Ruby

require 'spec_helper'
describe Mutant::Mutator::Literal, 'symbol' do
let(:random_string) { 'bar' }
let(:source) { ':foo' }
let(:mutations) do
%w(nil) << ":#{random_string}"
end
before do
Mutant::Random.stub(:hex_string => random_string)
end
it_should_behave_like 'a mutation enumerator method'
end