2013-07-28 16:03:06 -07:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2013-07-05 13:44:13 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Mutant::Mutator, 'masgn' do
|
2013-09-07 23:10:25 -07:00
|
|
|
let(:source) { 'a, b = c, d' }
|
|
|
|
|
|
|
|
let(:mutations) do
|
|
|
|
mutations = []
|
|
|
|
mutations << 'nil'
|
|
|
|
end
|
2013-07-05 13:44:13 +02:00
|
|
|
|
|
|
|
it_should_behave_like 'a mutator'
|
|
|
|
end
|