mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
18 lines
367 B
Ruby
18 lines
367 B
Ruby
|
system "ruby -rubygems -I../../lib ../../bin/pumactl -F t2_conf.rb start"
|
||
|
sleep 5
|
||
|
system "curl http://localhost:10103/"
|
||
|
|
||
|
system "ruby -rubygems -I../../lib ../../bin/pumactl -F t2_conf.rb stop"
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
log = File.read("t2-stdout")
|
||
|
|
||
|
File.unlink "t2-stdout" if File.file? "t2-stdout"
|
||
|
|
||
|
if log =~ %r(GET / HTTP/1\.1) && !File.file?("t2-pid")
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
end
|