Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 210 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 210 Bytes

ltest

Lua test framework.

Quick Start

local lt = require "ltest"

local test1 = lt.test "test1"

function test1:hello()
    lt.assertEquals(_VERSION, "Lua 5.4")
end

os.exit(lt.run(), true)