]> git.donarmstrong.com Git - biopieces.git/commitdiff
added Rakefile for unit testing of ruby code
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Sat, 19 Feb 2011 15:03:56 +0000 (15:03 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Sat, 19 Feb 2011 15:03:56 +0000 (15:03 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@1274 74ccb610-7750-0410-82ae-013aeee3265d

code_ruby/Maasha/Rakefile [new file with mode: 0644]

diff --git a/code_ruby/Maasha/Rakefile b/code_ruby/Maasha/Rakefile
new file mode 100644 (file)
index 0000000..97902c2
--- /dev/null
@@ -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