free_mutant/meta/hash.rb
Markus Schirp 7bf70d9634 Add support for explicit type in meta examples
* This is needed to relate examples to node types for nodes that cannot
  stand alone. Example are :where nodes that do not have syntax outside
  a :case
2016-03-19 15:13:05 +00:00

22 lines
668 B
Ruby

Mutant::Meta::Example.add :hash do
source '{true => true, false => false}'
singleton_mutations
# Mutation of each key and value in hash
mutation '{ false => true , false => false }'
mutation '{ nil => true , false => false }'
mutation '{ true => false , false => false }'
mutation '{ true => nil , false => false }'
mutation '{ true => true , true => false }'
mutation '{ true => true , nil => false }'
mutation '{ true => true , false => true }'
mutation '{ true => true , false => nil }'
# Remove each key once
mutation '{ true => true }'
mutation '{ false => false }'
# Empty hash
mutation '{}'
end