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

20 lines
355 B
Ruby
Raw Normal View History

2012-11-29 12:13:29 -08:00
system "ruby -rubygems -I../../lib ../../bin/puma -p 10102 -C t1_conf.rb ../hello.ru &"
2012-10-13 10:15:59 -07:00
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"
2012-10-13 10:15:59 -07:00
if log =~ %r!GET / HTTP/1\.1!
exit 0
else
exit 1
end