File: ruby-tests.rake

package info (click to toggle)
ruby-gon 6.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 468 kB
  • sloc: ruby: 1,367; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
    spec.pattern      = FileList['./spec/**/*_spec.rb'] - FileList['./spec/gon/thread_spec.rb']
    spec.rspec_opts = ["--color", '--format doc', '--require spec_helper']
end

task :default => :spec