about summary refs log tree commit homepage
path: root/t/t0114-rewindable-input-true.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-12-08 18:35:27 -0800
committerEric Wong <normalperson@yhbt.net>2010-12-08 18:35:27 -0800
commit6b750f5f952963009a2e6e8702fc8f3d8adc94ea (patch)
tree3debc215a179f416883aae3c02fd4ea4a4b5a322 /t/t0114-rewindable-input-true.sh
parent10d96a76a1ea4431dd10ba181d747169c22c1cec (diff)
downloadrainbows-6b750f5f952963009a2e6e8702fc8f3d8adc94ea.tar.gz
This was completely overlooked for the Rainbows 2.0.x
releases.
Diffstat (limited to 't/t0114-rewindable-input-true.sh')
-rwxr-xr-xt/t0114-rewindable-input-true.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/t/t0114-rewindable-input-true.sh b/t/t0114-rewindable-input-true.sh
new file mode 100755
index 0000000..349449c
--- /dev/null
+++ b/t/t0114-rewindable-input-true.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+. ./test-lib.sh
+skip_models EventMachine NeverBlock Rev RevThreadSpawn RevThreadPool
+
+t_plan 4 "rewindable_input toggled to true"
+
+t_begin "setup and start" && {
+        rainbows_setup
+        echo rewindable_input true >> $unicorn_config
+        rainbows -D -c $unicorn_config t0114.ru
+        rainbows_wait_start
+}
+
+t_begin "ensure worker is started" && {
+        test xOK = x$(curl -T t0114.ru -sSf http://$listen/)
+}
+
+t_begin "killing succeeds" && {
+        kill $rainbows_pid
+}
+
+t_begin "check stderr" && {
+        check_stderr
+}
+
+t_done