Add existing mutations for !!foo

This commit is contained in:
John Backus 2016-10-10 23:10:12 -07:00
parent be6daf3f44
commit 1e2e0607db
No known key found for this signature in database
GPG key ID: 9A91898D0B0B2FBE

View file

@ -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