1
0
Fork 0
mirror of https://github.com/Oreolek/ink-instead.git synced 2024-07-17 05:54:34 +03:00
ink-instead/test.lua
2016-12-03 03:05:00 +01:00

38 lines
752 B
Lua

local luaunit = require('luaunit')
local parser = require('pink.parser')
function testEmpt() doTestS(
"",
{}
) end
function testText() doTestS(
"Hello world",
{{"para", "Hello world"}}
) end
function testOptS() doTestS(
'* "I am somewhat tired[."]," I repeated.',
{{'choice', {"option", '"I am somewhat tired', '."', '," I repeated.'}}}
) end
function testBasic() doTest('basic') end
function testChoices() doTest('choices') end
-----------------------------
function doTestS(ink, expected)
luaunit.assertEquals(parser:match(ink), expected)
end
function doTest(name)
local test = require ('test.'..name)
local parsed = parser:match(test.ink)
luaunit.assertEquals(parsed, test.expected)
end
os.exit( luaunit.LuaUnit.run() )