summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/tasks/testing.rake7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake
index 4e944e1d9..2028bd15a 100644
--- a/lib/tasks/testing.rake
+++ b/lib/tasks/testing.rake
@@ -5,10 +5,9 @@ namespace :test do
task :coverage do
rm_f "coverage"
rm_f "coverage.data"
- rcov = "rcov --rails --aggregate coverage.data --text-summary -Ilib"
- system("#{rcov} --no-html test/unit/*_test.rb")
- system("#{rcov} --no-html test/functional/*_test.rb")
- system("#{rcov} --html test/integration/*_test.rb")
+ rcov = "rcov --rails --aggregate coverage.data --text-summary -Ilib --html"
+ files = Dir.glob("test/**/*_test.rb").join(" ")
+ system("#{rcov} #{files}")
system("open coverage/index.html") if PLATFORM['darwin']
end