rake options added

git-svn-id: https://beef.googlecode.com/svn/trunk@1402 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-11-03 07:41:23 +00:00
parent cabb74e864
commit 67edd9b5ef

View File

@@ -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"]
desc "Run all unit tests"
task :all_unit_tests do
sh "cd test/unit/;ruby ts_beef.rb"
end
task :default => ["all_unit_tests"]