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/t1.rb
2019-06-10 13:36:54 -05:00

18 lines
368 B
Ruby

system "ruby -rrubygems -Ilib bin/puma -p 10102 -C test/shell/t1_conf.rb test/rackup/hello.ru &"
sleep 5
system "curl http://localhost:10102/"
system "kill `cat t1-pid`"
sleep 1
log = File.read("t1-stdout")
File.unlink "t1-stdout" if File.file? "t1-stdout"
File.unlink "t1-pid" if File.file? "t1-pid"
if %r!GET / HTTP/1\.1!.match?(log)
exit 0
else
exit 1
end