about summary refs log tree commit homepage
path: root/t/t0113-rewindable-input-false.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t0113-rewindable-input-false.sh')
-rwxr-xr-xt/t0113-rewindable-input-false.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/t/t0113-rewindable-input-false.sh b/t/t0113-rewindable-input-false.sh
new file mode 100755
index 0000000..c906106
--- /dev/null
+++ b/t/t0113-rewindable-input-false.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+. ./test-lib.sh
+skip_models EventMachine NeverBlock Rev RevThreadSpawn RevThreadPool
+
+t_plan 4 "rewindable_input toggled to false"
+
+t_begin "setup and start" && {
+        rainbows_setup
+        echo rewindable_input false >> $unicorn_config
+        rainbows -D -c $unicorn_config t0113.ru
+        rainbows_wait_start
+}
+
+t_begin "ensure worker is started" && {
+        test xOK = x$(curl -T t0113.ru -H Expect: -vsSf http://$listen/)
+}
+
+t_begin "killing succeeds" && {
+        kill $rainbows_pid
+}
+
+t_begin "check stderr" && {
+        check_stderr
+}
+
+t_done