#!./build/kegogi -t 10
# This is a very basic kegogi file
# It sends requests using the method provided to a host with the specified
# uri.  It then checks the status code against the one specified in the expect
# portion of the command.

defaults host="www.google.com"

send GET /
expect 200 body=(.*google.*)

# 411 means length required
send POST http://www.google.com/
expect 411 

send GET http://www.google.com:80/this/is/not/real/asdfkljasdfk
expect 404
