Skip to content

Commit

Permalink
add a simple rakefile to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taf2 committed Mar 25, 2011
1 parent 2994034 commit 5f960e9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Rakefile
@@ -0,0 +1,9 @@
require 'rake/testtask'

desc "Default Task (Test project)"
task :default => :test

Rake::TestTask.new(:test) do |t|
t.test_files = FileList['test/*_test.rb']
t.verbose = false
end

0 comments on commit 5f960e9

Please sign in to comment.