c392cb5e4b
* Mutant is ruby 2.0+ only where UTF-8 is default encoding
35 lines
562 B
Ruby
35 lines
562 B
Ruby
Mutant::Meta::Example.add do
|
|
source '10.0'
|
|
|
|
singleton_mutations
|
|
|
|
# edge cases
|
|
mutation '0.0'
|
|
mutation '1.0'
|
|
mutation '(0.0 / 0.0)'
|
|
mutation '(1.0 / 0.0)'
|
|
mutation '(-1.0 / 0.0)'
|
|
|
|
# negative
|
|
mutation '-10.0'
|
|
end
|
|
|
|
Mutant::Meta::Example.add do
|
|
source '0.0'
|
|
|
|
singleton_mutations
|
|
mutation '1.0'
|
|
mutation '(0.0 / 0.0)'
|
|
mutation '(1.0 / 0.0)'
|
|
mutation '(-1.0 / 0.0)'
|
|
end
|
|
|
|
Mutant::Meta::Example.add do
|
|
source '-0.0'
|
|
|
|
singleton_mutations
|
|
mutation '1.0'
|
|
mutation '(0.0 / 0.0)'
|
|
mutation '(1.0 / 0.0)'
|
|
mutation '(-1.0 / 0.0)'
|
|
end
|