Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/actboy168/ltest
https://github.com/actboy168/ltest
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/actboy168/ltest
- Owner: actboy168
- License: mit
- Created: 2021-07-15T11:41:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T01:19:32.000Z (9 months ago)
- Last Synced: 2024-04-29T07:00:33.458Z (9 months ago)
- Language: Lua
- Size: 83 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
endos.exit(lt.run(), true)
```