From 8b1025d97508a46ec4becd2adeddc064b6552c83 Mon Sep 17 00:00:00 2001 From: martinahansen Date: Sat, 19 Feb 2011 15:03:56 +0000 Subject: [PATCH] added Rakefile for unit testing of ruby code git-svn-id: http://biopieces.googlecode.com/svn/trunk@1274 74ccb610-7750-0410-82ae-013aeee3265d --- code_ruby/Maasha/Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code_ruby/Maasha/Rakefile 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 -- 2.39.5