free_mutant/lib/mutant/test.rb
Markus Schirp 40c337ce5b Fine grained rspec integration
* 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]
2014-12-01 22:43:28 +00:00

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