File: Rakefile

package info (click to toggle)
ruby-adsf 1.2.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 140 kB
  • ctags: 30
  • sloc: ruby: 185; makefile: 11
file content (16 lines) | stat: -rw-r--r-- 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Load adsf
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/lib'))
require 'adsf'

desc 'Run all tests'
task :test do
  $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))

  require 'minitest/autorun'
  MiniTest.autorun

  test_files = Dir["test/**/test_*.rb"]
  test_files.each { |f| require f }
end

task :default => :test