File: ruby-tests.rake

package info (click to toggle)
ruby-redis-rails 5.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 124 kB
  • sloc: ruby: 25; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (3)
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/**/*.rb"] - (FileList["test/test_helper.rb", "test/html/pipeline/emoji_filter_test.rb", "test/html/pipeline/syntax_highlight_filter_test.rb"])
  test.libs << '/usr/lib/ruby/vendor_ruby' << 'test'
  test.verbose = false
  test.warning = false
end


task :default => [:test]