aboutsummaryrefslogtreecommitdiffstats
path: root/test/scripts/all.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/scripts/all.py')
-rw-r--r--test/scripts/all.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/scripts/all.py b/test/scripts/all.py
new file mode 100644
index 00000000..e6da7e51
--- /dev/null
+++ b/test/scripts/all.py
@@ -0,0 +1,20 @@
+log = []
+def clientconnect(ctx, cc):
+ ctx.log("XCLIENTCONNECT")
+ log.append("clientconnect")
+
+def request(ctx, r):
+ ctx.log("XREQUEST")
+ log.append("request")
+
+def response(ctx, r):
+ ctx.log("XRESPONSE")
+ log.append("response")
+
+def clientdisconnect(ctx, cc):
+ ctx.log("XCLIENTDISCONNECT")
+ log.append("clientdisconnect")
+
+def error(ctx, cc):
+ ctx.log("XERROR")
+ log.append("error")