Little improve in pipelining exception
[MonkeyD.git] / qa / error_404.htt
blob2860048cbcadee8cee8c17ecad3b4187620ec364
1 ################################################################################
2 # DESCRIPTION
3 #       Exercise error 404      
5 # AUTHOR
6 #       Carlos Ghan <charlie.brown.uy@gmail.com>
8 # DATE
9 #       June 29 2009
11 # COMMENTS
12 #       Requesting an inexistent object should return "Not Found"
13 ################################################################################
16 INCLUDE __CONFIG
18 CLIENT
19 _REQ $HOST $PORT
20 __GET /a_file_that_doesnt_exists.html $HTTPVER
21 __Host: $HOST
22 __Connection: close
24 _EXPECT . "HTTP/1.1 404 Not Found"
25 _WAIT
26 END