File: ruby-tests.rake

package info (click to toggle)
ruby-curb 0.9.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 652 kB
  • ctags: 949
  • sloc: ansic: 4,399; ruby: 2,806; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rake/testtask'

Rake::TestTask.new(:unittests) do |t|
  t.test_files = FileList['tests/tc_*.rb']
  t.verbose = false
end
                          
Rake::TestTask.new(:bugtests) do |t|
  t.test_files = FileList['tests/bug_*.rb']
  t.verbose = false
end

task :default => [:unittests]