Created
July 18, 2012 11:24
-
-
Save ream88/3135683 to your computer and use it in GitHub Desktop.
Minitest rake task
This file contains 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
require 'rake' | |
require 'rake/testtask' | |
Rake::TestTask.new do |t| | |
t.test_files = Dir.glob('spec/**/*_spec.rb') | |
end | |
task(default: :test) |
thanks
thanks <3 <3
Lol, I just googled "minitest rake task" and found this, and then I checked the author 😀 😊
👍 save me some time too!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thx man you saved me some time!