File: ruby-tests.rake

package info (click to toggle)
ruby-diffy 3.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 212 kB
  • sloc: ruby: 1,035; 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