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

https://github.com/molnarmark/fay

WIP unit testing in Multi Theft Auto
https://github.com/molnarmark/fay

Last synced: 3 months ago
JSON representation

WIP unit testing in Multi Theft Auto

Awesome Lists containing this project

README

          

# Fay
Work in progress Unit testing library for Multi Theft Auto

## Example
```lua
Fay {
it("should check if Fay is working correctly", function(sertify)
local ped = createPed(310, 5, 10, 15)
sertify:expect(5):toBe(5)
sertify:expect({1, 2, 3}):atIndex(2):toBe(5)
sertify:expect(ped):toBeAnElement()
end)
}
```