1INCLUDE $TOP/test/config.htb
2
3CLIENT
4
5_REQ $YOUR_HOST $YOUR_PORT
6__GET /your/path/to/your/resource?your=params HTTP/1.1
7__Host: $YOUR_HOST
8__User-Agent: mozilla
9__
10_EXPECT . "HTTP/1.1 200 OK"
11_WAIT
12
13END
14
15SERVER $YOUR_PORT
16
17_RES
18_WAIT
19__HTTP/1.1 200 OK
20__Content-Length: AUTO
21__Content-Type: text/html
22__
23
24END
25
26