10 lines
191 B
Ruby
10 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
Mutant::Meta::Example.add :lvasgn do
|
|
source 'a = true'
|
|
|
|
singleton_mutations
|
|
mutation 'a__mutant__ = true'
|
|
mutation 'a = false'
|
|
mutation 'a = nil'
|
|
end
|