Skip to content

Commit

Permalink
Added rake task for running tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
rvoicilas committed Aug 28, 2011
1 parent 6dba32f commit 44a2a81
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
Expand Up @@ -12,3 +12,13 @@ begin
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end


require 'rake/testtask'

Rake::TestTask.new('test') do |test|
test.pattern = 'test/*_test.rb'
test.verbose = true
end

task :default => :test

0 comments on commit 44a2a81

Please sign in to comment.