mirror of
https://github.com/ticky/wayback-classic.git
synced 2026-01-14 16:37:42 -05:00
12 lines
298 B
Ruby
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
|