unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob dd48bc68cf790ea92343cdb45453275db198e704 430 bytes (raw)
$ git show HEAD:t/t0014-rewindable-input-true.sh	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#!/bin/sh
. ./test-lib.sh
t_plan 4 "rewindable_input toggled to true"

t_begin "setup and start" && {
	unicorn_setup
	echo rewindable_input true >> $unicorn_config
	unicorn -D -c $unicorn_config t0014.ru
	unicorn_wait_start
}

t_begin "ensure worker is started" && {
	test xOK = x$(curl -T t0014.ru -sSf http://$listen/)
}

t_begin "killing succeeds" && {
	kill $unicorn_pid
}

t_begin "check stderr" && {
	check_stderr
}

t_done

git clone https://yhbt.net/unicorn.git