Sha256: 559394a58e37fbf8fbbb10a0fc28666f797d7060fe841953a23c8cc09aa77a6a

Contents?: true

Size: 583 Bytes

Versions: 9

Compression:

Stored size: 583 Bytes

Contents

Mutest::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

Mutest::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

Mutest::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

9 entries across 9 versions & 1 rubygems

Version Path
mutest-0.0.10 meta/float.rb
mutest-0.0.9 meta/float.rb
mutest-0.0.8 meta/float.rb
mutest-0.0.7 meta/float.rb
mutest-0.0.6 meta/float.rb
mutest-0.0.5 meta/float.rb
mutest-0.0.4 meta/float.rb
mutest-0.0.3 meta/float.rb
mutest-0.0.2 meta/float.rb