File: ruby-tests.rake

package info (click to toggle)
ruby-rack 3.1.16-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,048 kB
  • sloc: ruby: 14,799; sh: 12; makefile: 7; javascript: 1
file content (13 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- mode: ruby; coding: utf-8 -*-

require "rake/testtask"

desc "Run all the tests"
task default: :test

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