1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Update doc

This commit is contained in:
Étienne Fildadut 2024-01-05 01:52:21 +01:00
parent efb99a9ed7
commit 98917c2ca4
5 changed files with 36 additions and 35 deletions

View file

@ -1,6 +1,5 @@
-- Require LuaFileSystem: luarocks install luafilesystem
local lfs = require("lfs")
-- Require LuaFileSystem for running test suite: luarocks install luafilesystem
-- Not needed for running a single script in interactive mode.
package.path = "./?/init.lua;./?.lua;" .. package.path
local anselme = require("anselme")
@ -144,6 +143,7 @@ if not arg[1] or arg[1] == "update" then
}
-- list tests
local lfs = require("lfs")
local tests = {}
for test in lfs.dir("test/tests/") do
if test:match("%.ans$") then