Fix warnins in subject and mutation runner

This commit is contained in:
Markus Schirp 2013-09-02 20:35:01 +02:00
parent 43bf1ad193
commit 628a6c44e2
2 changed files with 18 additions and 2 deletions

View file

@ -4,10 +4,18 @@ module Mutant
class Runner
# Mutation runner
class Mutation < self
include Concord::Public.new(:config, :mutation)
include Equalizer.new(:config, :mutation)
register Mutant::Mutation
# Return mutation
#
# @return [Mutation]
#
# @api private
#
attr_reader :mutation
# Return killer instance
#
# @return [Killer]

View file

@ -4,7 +4,15 @@ module Mutant
class Runner
# Subject specific runner
class Subject < self
include Concord::Public.new(:config, :subject)
include Equalizer.new(:config, :subject)
# Return subject
#
# @return [Subject]
#
# @api private
#
attr_reader :subject
register Mutant::Subject