mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2025-01-11 20:03:35 +01:00
9 lines
167 B
Ruby
9 lines
167 B
Ruby
require "rake/testtask"
|
|
|
|
FileList['test*.rb'].each do |file|
|
|
Rake::TestTask.new do |t|
|
|
t.libs << "test"
|
|
t.test_files = [file]
|
|
t.verbose = true
|
|
end
|
|
end
|