File: ruby-tests.rake

package info (click to toggle)
ruby-concurrent 1.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,136 kB
  • sloc: ruby: 30,875; java: 6,128; ansic: 265; makefile: 26; sh: 19
file content (11 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
if ENV['AUTOPKGTEST_TMP'] then
  require 'gem2deb/rake/spectask'
  Gem2Deb::Rake::RSpecTask.new do |spec|
    spec.rspec_opts = '--color --backtrace --format documentation --seed 1'
    spec.pattern = './spec/concurrent/*_spec.rb'
  end
else
  task :default do
    puts "Disable tests during build"
  end
end