File: ruby-tests.rake

package info (click to toggle)
cucumber 2.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,040 kB
  • ctags: 1,920
  • sloc: ruby: 17,043; sh: 10; makefile: 9; tcl: 3
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern      = './spec/**/*_spec.rb'
  spec.rspec_opts = "-r json"
end

task :default => :spec