File: ruby-tests.rake

package info (click to toggle)
rake 13.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 928 kB
  • sloc: ruby: 9,635; sh: 19; ansic: 19; makefile: 11
file content (9 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
require "gem2deb/rake/testtask"
Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.verbose = true
  t.test_files = FileList["test/**/test_*.rb"]
  t.options = '--verbose'
end

task default: :test