Fix CLI description for --use

This commit is contained in:
Markus Schirp 2015-06-13 04:26:08 +00:00
parent ff043b16dc
commit 64aeb516a0
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ module Mutant
opts.on('--score COVERAGE', 'Fail unless COVERAGE is not reached exactly [deprecated]') do |coverage| opts.on('--score COVERAGE', 'Fail unless COVERAGE is not reached exactly [deprecated]') do |coverage|
update(expected_coverage: Rational(coverage, 100)) update(expected_coverage: Rational(coverage, 100))
end end
opts.on('--use STRATEGY', 'Use STRATEGY for killing mutations', &method(:setup_integration)) opts.on('--use INTEGRATION', 'Use INTEGRATION to kill mutations', &method(:setup_integration))
end end
# Add filter options # Add filter options

View file

@ -127,7 +127,7 @@ Environment:
Options: Options:
--expected-coverage COVERAGE Fail unless COVERAGE is not reached exactly, parsed via Rational() --expected-coverage COVERAGE Fail unless COVERAGE is not reached exactly, parsed via Rational()
--score COVERAGE Fail unless COVERAGE is not reached exactly [deprecated] --score COVERAGE Fail unless COVERAGE is not reached exactly [deprecated]
--use STRATEGY Use STRATEGY for killing mutations --use INTEGRATION Use INTEGRATION to kill mutations
--ignore-subject PATTERN Ignore subjects that match PATTERN --ignore-subject PATTERN Ignore subjects that match PATTERN
--fail-fast Fail fast --fail-fast Fail fast
--version Print mutants version --version Print mutants version