Added test suite generator for ruby

This commit is contained in:
Dan Hirsch 2014-01-10 21:24:50 +01:00
parent 8bd6671f90
commit 6a35872470
7 changed files with 1091 additions and 6 deletions

View file

@ -1,7 +1,8 @@
require 'rake/testtask'
Rake::TestTask.new do |t|
t.pattern = "test/*_test.rb"
#t.pattern = "test/*_test.rb"
t.test_files = FileList['test/*_test.rb']
end
task :default => [:test]