Sha256: 82e3ce17b305b3ae2bbb24d378ec3b806374842de6c73063d2dc7a94a0c650cc
Contents?: true
Size: 614 Bytes
Versions: 20
Compression:
Stored size: 614 Bytes
Contents
# frozen_string_literal: true Mutant::Meta::Example.add :float 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 :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 :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
Version data entries
20 entries across 20 versions & 1 rubygems