File: ruby-tests.rake

package info (click to toggle)
ruby-feedparser 0.11.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: ruby: 1,871; sh: 24; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'gem2deb/rake/testtask'

exclude = %w[
  test/tc_htmloutput.rb
  test/tc_textoutput.rb
  test/tc_parser.rb
  test/tc_textwrappedoutput.rb
]

Gem2Deb::Rake::TestTask.new do |t|
  t.libs = ['test']
  t.test_files = FileList['test/tc_*.rb'] - exclude
end