Added a resource that takes at least 3 seconds to respond, to check for timeout handling.
diff --git a/test/timeout/timeout.cgi b/test/timeout/timeout.cgi
new file mode 100755
index 0000000..07e15c0
--- /dev/null
+++ b/test/timeout/timeout.cgi
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import time
+
+# Always returns an empty response body
+# and adds in the X-Method: header with the
+# method that was sent to the CGI
+time.sleep(3)
+
+print "Status: 200 Ok"
+print "Content-type: text/plain"
+print ""
+print "3 seconds later"
+
+