removed deprecated --test-unit-only from rcov rake task

This commit is contained in:
Trevor Dawe 2010-04-15 08:37:57 +08:00 committed by Ryan Tomayko
parent 37eb3a767f
commit d3a401e66c
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace :test do
desc 'Mesures test coverage'
task :coverage do
rm_f "coverage"
rcov = "rcov --text-summary --test-unit-only -Ilib"
rcov = "rcov --text-summary -Ilib"
system("#{rcov} --no-html --no-color test/*_test.rb")
end
end