Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Add Rakefile to run tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
threedaymonk committed Jan 17, 2012
1 parent 14ebdeb commit 20b913e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require "rake/testtask"

task :default => :test

Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/*_test.rb']
t.ruby_opts << "-w"
t.verbose = true
end

0 comments on commit 20b913e

Please sign in to comment.