1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-08 15:13:35 +00:00
lovr/test/main.lua
2024-06-14 16:59:04 -07:00

13 lines
274 B
Lua

local lust = require 'lust'
group, test, expect, before = lust.describe, lust.it, lust.expect, lust.before
function lovr.load()
require('lovr/' .. (arg[1] or 'init'))
lovr.event.quit(lust.errors > 0 and 1 or 0)
end
function lovr.errhand(message)
print(message)
end