mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
8 lines
125 B
Text
8 lines
125 B
Text
|
require 'rake/testtask'
|
||
|
|
||
|
Rake::TestTask.new(:test) do |t|
|
||
|
t.test_files = FileList['**/*_test.rb']
|
||
|
end
|
||
|
|
||
|
task default: :test
|