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