File: ruby-tests.rake

package info (click to toggle)
ruby-addressable 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 824 kB
  • sloc: ruby: 9,615; makefile: 12
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