Add existing mutations for !!foo
This commit is contained in:
parent
be6daf3f44
commit
1e2e0607db
1 changed files with 28 additions and 0 deletions
28
meta/send.rb
28
meta/send.rb
|
@ -688,3 +688,31 @@ Mutant::Meta::Example.add :send do
|
|||
singleton_mutations
|
||||
mutation 'first'
|
||||
end
|
||||
|
||||
Mutant::Meta::Example.add :send do
|
||||
source '!!foo'
|
||||
|
||||
singleton_mutations
|
||||
mutation '!foo'
|
||||
mutation '!self'
|
||||
mutation '!!self'
|
||||
end
|
||||
|
||||
Mutant::Meta::Example.add :send do
|
||||
source '!foo'
|
||||
|
||||
singleton_mutations
|
||||
mutation 'foo'
|
||||
mutation '!self'
|
||||
end
|
||||
|
||||
Mutant::Meta::Example.add :send do
|
||||
source '!foo&.!'
|
||||
|
||||
singleton_mutations
|
||||
mutation 'foo&.!'
|
||||
mutation '!self'
|
||||
mutation '!foo'
|
||||
mutation '!self&.!'
|
||||
mutation '!(!foo)'
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue