mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 03:32:34 +08:00
c3fd8fc9a5
* 修cost_data * 修cardMark,仍需自动清理措施 * 修锁视技( **重要!使用牌之前会根据锁视技重新决定使用的卡牌!!**)
15 lines
286 B
Lua
15 lines
286 B
Lua
-- Run tests with `lua5.4 test/lua/run.lua`
|
|
|
|
---@diagnostic disable: lowercase-global
|
|
|
|
package.path = package.path .. ";./test/lua/lib/?.lua"
|
|
|
|
lu = require('luaunit')
|
|
local os = os
|
|
fk = require('fk')
|
|
|
|
dofile 'lua/freekill.lua'
|
|
dofile 'test/lua/pattern.lua'
|
|
|
|
os.exit( lu.LuaUnit.run() )
|