File: ruby-tests.rake

package info (click to toggle)
ruby-cmath 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: ruby: 3,415; makefile: 4; sh: 4
file content (12 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
require "rake/testtask"

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

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

task :default => :test