Files
beef/rakefile
wade@bindshell.net 67edd9b5ef rake options added
git-svn-id: https://beef.googlecode.com/svn/trunk@1402 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
2011-11-03 07:41:23 +00:00

11 lines
223 B
Plaintext

desc "Run quick unit tests"
task :quick_unit_tests do
sh "cd test/unit/;ruby ts_beef.rb"
end
desc "Run all unit tests"
task :all_unit_tests do
sh "cd test/unit/;ruby ts_beef.rb"
end
task :default => ["all_unit_tests"]