learnxinyminutes-docs/Rakefile
2016-11-09 20:24:10 -08:00

8 lines
109 B
Ruby

task default: %w[test]
task :test do
Dir["./tests/*.rb"].each do |test_file|
ruby test_file
end
end