File: ruby-tests.rake

package info (click to toggle)
ruby-markerb 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 192 kB
  • ctags: 27
  • sloc: ruby: 205; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
require 'rake/testtask'

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

task :default => [:test]