File: Rakefile

package info (click to toggle)
jgrep 1.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 1,004; makefile: 8
file content (11 lines) | stat: -rw-r--r-- 241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
require "spec_helper.rb"
require "rake"
require "rspec/core/rake_task"

desc "Run JGrep tests"
RSpec::Core::RakeTask.new(:test) do |t|
  t.pattern = "unit/*_spec.rb"
  t.rspec_opts = "--format s --color --backtrace"
end

task default: :test