File: ruby-tests.rake

package info (click to toggle)
ruby-crack 0.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,700 kB
  • sloc: ruby: 859; sh: 39; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
#-*- mode: ruby; coding: utf-8 -*-
require 'rake/testtask'
task :default => :test
Rake::TestTask.new do |t|
  t.libs << 'test'
  t.test_files = FileList['test/**/*_test.rb']
  t.verbose = true
end