unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 0b6cd94aedc0d016034854afd1ff62add8e97083 509 bytes (raw)
$ git show no-kgio-wip:t/t0301-no-default-middleware-ignored-in-config.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
25
 
#!/bin/sh
. ./test-lib.sh
t_plan 3 "-N / --no-default-middleware option not supported in config.ru"

t_begin "setup and start" && {
	unicorn_setup
	RACK_ENV=development unicorn -D -c $unicorn_config t0301.ru
	unicorn_wait_start
}

t_begin "check switches parsed as expected and -N ignored for Rack::Lint" && {
	debug=false
	lint=
	eval "$(curl -sf http://$listen/vars)"
	test x"$debug" = xtrue
	test x"$lint" != x
	test -f "$lint"
}

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

t_done

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