1
0
Fork 0
mirror of https://github.com/Oreolek/ink-instead.git synced 2024-05-13 06:28:24 +03:00
ink-instead/test/parser/choices.lua
2017-08-09 11:36:14 +02:00

28 lines
715 B
Lua

return {
ink=[[
== start ==
* I dont know
* "I am somewhat tired[."]," I repeated.
"Really," he responded.
"How deleterious."
* "Nothing, Monsieur!"[] I replied.
"Very good, *then."
* I said no more
"Ah,". "I see you"
== finale ==
]],
expected= {
{"knot", "start"},
{"option", 1, "I dont know", "", ""},
{"option", 1, '"I am somewhat tired', '."', '," I repeated.'},
{"para", '"Really," he responded.'},
{"para", '"How deleterious."'},
{"option", 1, '"Nothing, Monsieur!"', "", " I replied."},
{"para", '"Very good,'},
{"option", 1, 'then."', "", ""},
{"option", 1, "I said no more", "", ""},
{"para", '"Ah,". "I see you"'},
{"knot", "finale"}
}
}