aboutsummaryrefslogtreecommitdiffstats
path: root/test/parser_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-11-26 16:58:49 +0100
committerLoïc Hoguin <[email protected]>2016-11-26 16:58:49 +0100
commit074e21e93abf0eec59973cc35c9d2755d4a921f9 (patch)
treee21f277389a4c02bd98febbec20d15f463a5bb4f /test/parser_SUITE.erl
parent6506afbce640d14ea772497839f45322cbdf0531 (diff)
downloadasciideck-074e21e93abf0eec59973cc35c9d2755d4a921f9.tar.gz
asciideck-074e21e93abf0eec59973cc35c9d2755d4a921f9.tar.bz2
asciideck-074e21e93abf0eec59973cc35c9d2755d4a921f9.zip
Fix an issue in Ranch manual
Solution is a hack for now, unfortunately.
Diffstat (limited to 'test/parser_SUITE.erl')
-rw-r--r--test/parser_SUITE.erl10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/parser_SUITE.erl b/test/parser_SUITE.erl
index eca21a3..0f7b393 100644
--- a/test/parser_SUITE.erl
+++ b/test/parser_SUITE.erl
@@ -303,6 +303,16 @@ labeled_list(_) ->
[{ll, _, [
{li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
], _}] = parse("The label:: The value!"),
+ %% @todo Currently this returns two ll. This is a bug but it gives
+ %% me the result I want, or close enough, for now.
+ [{ll, _, [
+ {li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
+ ], _},
+ {ll, _, [
+ {li, #{label := <<"More labels">>}, [{p, _, <<"More values!">>, _}], _}
+ ], _}] = parse(
+ "The label:: The value!\n"
+ "More labels:: More values!\n"),
[{ll, _, [
{li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
], _}] = parse(