File: ruby-tests.rake

package info (click to toggle)
ruby-fog-brightbox 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,088 kB
  • ctags: 1,193
  • sloc: ruby: 5,670; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
require 'rake/testtask'
Rake::TestTask.new(:minitest) do |test|
  test.test_files = FileList["spec/**/*_spec.rb"]
  test.verbose = false
  test.warning = false
  test.libs << 'spec'
end


task :default => [:minitest]