15 lines
286 B
Ruby
15 lines
286 B
Ruby
module Mutant
|
|
# Abstract base class for test that might kill a mutation
|
|
class Test
|
|
include Adamantium::Flat, Anima.new(
|
|
:expression,
|
|
:id
|
|
)
|
|
|
|
# Identification string
|
|
#
|
|
# @return [String]
|
|
alias_method :identification, :id
|
|
|
|
end # Test
|
|
end # Mutant
|