Files
wayback-classic/tests/Rakefile
2021-07-31 11:56:20 -07:00

12 lines
298 B
Ruby

require 'rake/testtask'
Rake::TestTask.new do |task|
# On GitHub Actions CI, gems install under a "vendor" directory in here,
# so we have to glob our way around that!
task.test_files = FileList['./{[!vendor/]**/*,*}_test.rb']
task.verbose = true
end
desc 'Run tests'
task default: :test