From 08520c1bc778e692d08ab55b652c29e7b5f001e7 Mon Sep 17 00:00:00 2001 From: bel2125 Date: Tue, 26 Jan 2021 13:06:13 +0100 Subject: [PATCH] Add test with new Lua syntax --- test/page7.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/page7.lua diff --git a/test/page7.lua b/test/page7.lua new file mode 100644 index 00000000..b8914ef0 --- /dev/null +++ b/test/page7.lua @@ -0,0 +1,10 @@ +-- reflect the request information as JSON +json = require "json" + +response = json.encode(mg.request_info) + +mg.response.status = 200 +mg.response.http_headers["Content-Type"] = "application/json; charset=utf-8"; +mg.response.http_headers["Content-Length"] = #response; +mg.response.send() +mg.write(response)