File: ruby-tests.rake

package info (click to toggle)
ruby-shoulda-context 1.0.0~beta1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 220 kB
  • sloc: ruby: 1,050; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# adapted from upstream Rakefile

require 'rake/testtask'

test_files_pattern = 'test/**/*_test.rb'
Rake::TestTask.new do |t|
  t.libs << 'debian/ruby-shoulda-context/usr/lib/ruby/vendor_ruby'
  t.libs << 'test'
  t.pattern = test_files_pattern
  t.verbose = false
end

task :default => :test