From: martinahansen Date: Sat, 19 Feb 2011 15:03:56 +0000 (+0000) Subject: added Rakefile for unit testing of ruby code X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8b1025d97508a46ec4becd2adeddc064b6552c83;p=biopieces.git added Rakefile for unit testing of ruby code git-svn-id: http://biopieces.googlecode.com/svn/trunk@1274 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/code_ruby/Maasha/Rakefile b/code_ruby/Maasha/Rakefile new file mode 100644 index 0000000..97902c2 --- /dev/null +++ b/code_ruby/Maasha/Rakefile @@ -0,0 +1,8 @@ +require 'rake/testtask' + +test_dir = File.expand_path('test') + +Rake::TestTask.new("test") do |t| + t.pattern = "test/test_*.rb" + t.warning = true +end