From 67edd9b5ef6bef00bb8c8e8b302ae7f0360c9106 Mon Sep 17 00:00:00 2001 From: "wade@bindshell.net" Date: Thu, 3 Nov 2011 07:41:23 +0000 Subject: [PATCH] rake options added git-svn-id: https://beef.googlecode.com/svn/trunk@1402 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- rakefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/rakefile b/rakefile index 77262635c..599780be4 100644 --- a/rakefile +++ b/rakefile @@ -1,6 +1,11 @@ -desc "Run unit tests" -task :unit_tests do +desc "Run quick unit tests" +task :quick_unit_tests do sh "cd test/unit/;ruby ts_beef.rb" end -task :default => ["unit_tests"] \ No newline at end of file +desc "Run all unit tests" +task :all_unit_tests do + sh "cd test/unit/;ruby ts_beef.rb" +end + +task :default => ["all_unit_tests"] \ No newline at end of file