File: ruby-tests.rake

package info (click to toggle)
ruby-html-pipeline 2.14.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: ruby: 2,265; sh: 13; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
# github-linguist, gemoji not in archive
  test.test_files = FileList["test/**/*_test.rb"] - FileList["test/html/pipeline/emoji_filter_test.rb"]
  test.libs << '/usr/lib/ruby/vendor_ruby' << 'test'
  test.verbose = false
  test.warning = false
end


task :default => [:test]