mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 10:01:38 +00:00
12 lines
173 B
Ruby
12 lines
173 B
Ruby
task default: %w[test]
|
|
|
|
task :test do
|
|
Dir["./tests/*.rb"].each do |test_file|
|
|
begin
|
|
ruby test_file
|
|
rescue
|
|
puts "FAILED #{test_file}!"
|
|
end
|
|
end
|
|
end
|