meta/float.rb in mutant-0.8.10 vs meta/float.rb in mutant-0.8.11

- old
+ new

@@ -1,6 +1,6 @@ -Mutant::Meta::Example.add do +Mutant::Meta::Example.add :float do source '10.0' singleton_mutations # edge cases @@ -12,20 +12,20 @@ # negative mutation '-10.0' end -Mutant::Meta::Example.add do +Mutant::Meta::Example.add :float 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 +Mutant::Meta::Example.add :float do source '-0.0' singleton_mutations mutation '1.0' mutation '(0.0 / 0.0)'