40c337ce5b
* Flattens the rspec example groups on filtering to remove redundant work being done on executing subtrees of already executed example groups * Uses test batching to kill one mutation per isolation that results in a significant speedup. * Drop rspec 2 support. [closes #256]
15 lines
304 B
Ruby
15 lines
304 B
Ruby
module Mutant
|
|
# Abstract base class for test that might kill a mutation
|
|
class Test
|
|
include Adamantium::Flat, Anima.new(:id, :expression)
|
|
|
|
# Return test identification
|
|
#
|
|
# @return [String]
|
|
#
|
|
# @api private
|
|
#
|
|
alias_method :identification, :id
|
|
|
|
end # Test
|
|
end # Mutant
|