Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/actboy168/ltest


https://github.com/actboy168/ltest

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# ltest

Lua test framework.

## Quick Start

``` lua
local lt = require "ltest"

local test1 = lt.test "test1"

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

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