File: ruby-tests.rake

package info (click to toggle)
ruby-diffy 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 208 kB
  • sloc: ruby: 1,006; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
require 'rspec/core/rake_task'

ENV['LANG']="C.UTF-8"

RSpec::Core::RakeTask.new(:spec) do |spec|
 spec.pattern      = './spec/*_spec.rb'
end

task :default => :spec