File: ruby-tests.rake

package info (click to toggle)
ruby-zip-zip 0.3%2Bgh-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 284 kB
  • sloc: ruby: 3,719; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test'
  test.test_files = FileList["test/**/*_test.rb"]
  test.verbose = false
  test.warning = false
end

task :default => [:test]