File: ruby-tests.rake

package info (click to toggle)
ruby-dataobjects-mysql 0.10.17-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 372 kB
  • sloc: ansic: 1,420; ruby: 653; sh: 30; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
# https://bugs.debian.org/1015310
# https://jira.mariadb.org/browse/MDEV-28751
if ENV['AUTOPKGTEST_TMP']
  spec.pattern      = './spec/*_spec.rb'
else
  spec.pattern      = 'none'
end
end

task :default => :spec