File: ruby-tests.rake

package info (click to toggle)
ruby-faraday-middleware 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 376 kB
  • sloc: ruby: 2,388; sh: 15; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
require 'rspec/core/rake_task'
# Failing tests are disabled
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern      = FileList['./spec/**/*_spec.rb'] - 
    FileList['./spec/unit/caching_spec.rb','./spec/unit/gzip_spec.rb']
end

task :default => :spec