1
0
Fork 0
mirror of https://github.com/Oreolek/ink-instead.git synced 2024-05-14 23:18:23 +03:00
ink-instead/test/nested2.lua
2016-12-04 01:38:27 +01:00

32 lines
731 B
Lua

return {
ink=[[
"Well, Poirot? Murder or suicide?"
* "Murder"
"And who did it?"
* * "Detective-Inspector Japp!"
* * "Captain Hastings!"
* * "Myself!"
* "Suicide"
]],
expected = {
{"para", '"Well, Poirot? Murder or suicide?"'},
{
"choice",
{
"option",
'"Murder"',
"",
"",
{"para", '"And who did it?"'},
{
"choice",
{"option", '"Detective-Inspector Japp!"', "", ""},
{"option", '"Captain Hastings!"', "", ""},
{"option", '"Myself!"', "", ""}
}
},
{"option", '"Suicide"', "", ""}
}
}
}