Move constant above class body
This commit is contained in:
parent
b917be72b6
commit
1122f05a3a
1 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,9 @@ module Mutant
|
||||||
# Runner for object config
|
# Runner for object config
|
||||||
class Config < self
|
class Config < self
|
||||||
|
|
||||||
|
# The expected coverage precision
|
||||||
|
COVERAGE_PRECISION = 1
|
||||||
|
|
||||||
register Mutant::Config
|
register Mutant::Config
|
||||||
|
|
||||||
# Run runner for object
|
# Run runner for object
|
||||||
|
@ -40,8 +43,6 @@ module Mutant
|
||||||
end
|
end
|
||||||
memoize :failed_subjects
|
memoize :failed_subjects
|
||||||
|
|
||||||
COVERAGE_PRECISION = 1
|
|
||||||
|
|
||||||
# Test if run was successful
|
# Test if run was successful
|
||||||
#
|
#
|
||||||
# @return [true]
|
# @return [true]
|
||||||
|
|
Loading…
Reference in a new issue