Sha256: 2a28a67ecdcd89bde0cb01f5a039e2ab242e15adb396a9e246baa1e0f1e30d30
Contents?: true
Size: 462 Bytes
Versions: 3
Compression:
Stored size: 462 Bytes
Contents
# frozen_string_literal: true Mutant::Meta::Example.add :array do source '[true]' singleton_mutations mutation 'true' mutation '[false]' mutation '[]' end Mutant::Meta::Example.add :array do source '[true, false]' singleton_mutations # Mutation of each element in array mutation '[false, false]' mutation '[true, true]' # Remove each element of array once mutation '[true]' mutation '[false]' # Empty array mutation '[]' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.9.11 | meta/array.rb |
mutant-0.9.10 | meta/array.rb |
mutant-0.9.9 | meta/array.rb |