Created
April 25, 2013 08:00
-
-
Save BlakeWilliams/5458208 to your computer and use it in GitHub Desktop.
Rake task for minitest-rails stats. Slightly incomplete.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task :stats => "test:statssetup" | |
| namespace :test do | |
| task :statssetup do | |
| require 'rails/code_statistics' | |
| ['controllers', 'helpers', 'models'] .each do |type| | |
| dir = "test/#{type}" | |
| ::STATS_DIRECTORIES << ["#{type} tests", dir] | |
| ::CodeStatistics::TEST_TYPES << "#{type} tests" | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment