File: ruby-tests.rake

package info (click to toggle)
ruby-shoulda-context 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 352 kB
  • ctags: 143
  • sloc: ruby: 1,339; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# adapted from upstream Rakefile

require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << 'test'
  t.test_files = FileList['test/**/*_test.rb'].exclude('test/shoulda/test_framework_detection_test.rb')
end

task :default => :test