File: ruby-tests.rake

package info (click to toggle)
ruby-addressable 2.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,016 kB
  • sloc: ruby: 13,688; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec) do |t|
  # net_http_compat requires network access
  t.pattern = FileList['spec/**/*_spec.rb'].exclude(/net_http_compat/)
end

task :default => :spec