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