File: ruby-tests.rake

package info (click to toggle)
ruby-sinatra 4.1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,924 kB
  • sloc: ruby: 17,647; sh: 25; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'gem2deb/rake/testtask'

task :default do
  ENV['LANG'] = 'C'
  ENV.delete 'LC_CTYPE'
end

EXCLUDE_TESTS = %w[
   test/coffee_test.rb
   test/integration_start_test.rb
]

Gem2Deb::Rake::TestTask.new do |t|
  t.libs = ['test']
  t.test_files = FileList['test/**/*_test.rb'] + FileList['test/**/test_*.rb'] - EXCLUDE_TESTS
end