File: ruby-tests.rake

package info (click to toggle)
ruby-addressable 2.8.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: ruby: 9,421; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (7)
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