File: ruby-tests.rake

package info (click to toggle)
ruby-redis-rails 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 124 kB
  • ctags: 4
  • sloc: ruby: 31; makefile: 2
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]