Skip to content

Instantly share code, notes, and snippets.

@timfanda35
Forked from ream88/Rakefile
Created October 6, 2015 09:11
Show Gist options
  • Save timfanda35/f38dfe8c85828af863a8 to your computer and use it in GitHub Desktop.
Save timfanda35/f38dfe8c85828af863a8 to your computer and use it in GitHub Desktop.
Minitest rake task
require 'rake'
require 'rake/testtask'
Rake::TestTask.new do |t|
t.test_files = Dir.glob('spec/**/*_spec.rb')
end
task(default: :test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment