assay-lua 0.10.4

General-purpose enhanced Lua runtime. Batteries-included scripting, automation, and web services.
Documentation
1
2
3
4
5
6
7
8
-- Integration test: Lua script that passes
local resp = http.get("https://httpbin.org/get")
assert.eq(resp.status, 200, "Expected 200 from httpbin")

local data = json.parse(resp.body)
assert.not_nil(data.url, "Expected url field in response")

log.info("Script test passed: url=" .. data.url)