File: ruby-tests.rake

package info (click to toggle)
ruby-prof 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,048 kB
  • sloc: ruby: 9,805; ansic: 2,968; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'gem2deb/rake/testtask'

Gem2Deb::Rake::TestTask.new do |t|
  t.libs = ['test']
  t.verbose = true
  t.test_files = FileList['test/**/*_test.rb'] - FileList[
    'test/printers_test.rb',
    'test/call_info_visitor_test.rb',
    'test/printer_graph_test.rb',
    'test/dynamic_method_test.rb',
    'test/yarv_test.rb',
    'test/unique_call_path_test.rb',
  ] - `grep -rl delta.*time test/*.rb`.split
end