File: Rakefile

package info (click to toggle)
dhelp 0.6.32
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 604 kB
  • sloc: ruby: 1,171; sh: 555; perl: 372; makefile: 77
file content (9 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
require 'rake/testtask'

Rake::TestTask.new('test:unit') do |t|
  t.libs = ["lib"]
  t.test_files = FileList['test/**/tc_*.rb']
  t.verbose = true
end

task :default => ['test:unit']