Fix mutation expectations for binary operator nodes
This commit is contained in:
parent
7643ba804e
commit
37588b9bdb
1 changed files with 4 additions and 4 deletions
|
@ -173,10 +173,10 @@ describe Mutant::Mutator, 'send' do
|
|||
|
||||
let(:mutations) do
|
||||
mutations = []
|
||||
mutations << "((false) #{operator} (false))"
|
||||
mutations << "((nil) #{operator} (false))"
|
||||
mutations << "((true) #{operator} (true))"
|
||||
mutations << "((true) #{operator} (nil))"
|
||||
mutations << "false #{operator} false"
|
||||
mutations << "nil #{operator} false"
|
||||
mutations << "true #{operator} true"
|
||||
mutations << "true #{operator} nil"
|
||||
mutations << 'true'
|
||||
mutations << 'false'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue