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