From 32d07aea4bbe2010acd7b1fa06611d2c391fcb55 Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Thu, 15 Nov 2012 15:07:14 +1100 Subject: [PATCH] Run all the tests when calling 'rake' --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index ab76dc9e..64845360 100644 --- a/Rakefile +++ b/Rakefile @@ -5,4 +5,6 @@ task :test do Dir['test/*_test.rb'].each do |testfile| load testfile end -end \ No newline at end of file +end + +task :default => :test