Fix failing spec caused by bug fix in unparser
This commit is contained in:
parent
27e955dfb4
commit
ab3ec615ab
1 changed files with 7 additions and 2 deletions
|
@ -3,8 +3,13 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe Mutant::Mutator::Node::Generic, 'next' do
|
||||
let(:source) { 'next true' }
|
||||
let(:mutations) { [] }
|
||||
let(:source) { 'next true' }
|
||||
|
||||
let(:mutations) do
|
||||
mutations = []
|
||||
mutations << 'next false'
|
||||
mutations << 'next nil'
|
||||
end
|
||||
|
||||
it_should_behave_like 'a mutator'
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue