1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/test/shell/run.rb

9 lines
173 B
Ruby

results = %w[t1 t2 t3].map do |test|
system("ruby -rrubygems test/shell/#{test}.rb ") # > /dev/null 2>&1
end
if results.any? { |r| r != true }
exit 1
else
exit 0
end