mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 23:23:55 +00:00
8 lines
109 B
Ruby
8 lines
109 B
Ruby
task default: %w[test]
|
|
|
|
task :test do
|
|
Dir["./tests/*.rb"].each do |test_file|
|
|
ruby test_file
|
|
end
|
|
end
|