Skip to content

Instantly share code, notes, and snippets.

@jamesmartin
Created April 27, 2010 00:31
Show Gist options
  • Save jamesmartin/380149 to your computer and use it in GitHub Desktop.
Save jamesmartin/380149 to your computer and use it in GitHub Desktop.
require 'rake'
require 'rake/testtask'
task :default => [:test_units]
desc "Run basic tests"
Rake::TestTask.new("test_units") do |test|
test.pattern = 'test/*_test.rb'
test.verbose = true
test.warning = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment