X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/b3c3c42b269c102123dcd80979cb9c49ce13bca7..1d46ebef52412b3b93e547ce124d813cf34e3b56:/t/preprocess.t diff --git a/t/preprocess.t b/t/preprocess.t index 7bb9878d0..2211e8471 100755 --- a/t/preprocess.t +++ b/t/preprocess.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use warnings; use strict; -use Test::More tests => 31; +use Test::More tests => 34; BEGIN { use_ok("IkiWiki"); } @@ -67,10 +67,17 @@ is(IkiWiki::preprocess("foo", "foo", $long, 0, 0), $long, is(IkiWiki::preprocess("foo", "foo", $long."]]", 0, 0), $long."]]", "unterminated triple-quoted string is not treated as a bare word"); +is(IkiWiki::preprocess("foo", "foo", "[[!foo a=<<HEREDOC\n".$multiline."\nHEREDOC]]", 0, 0), + "foo(a => $multiline)", "nested strings via heredoc (for key)"); +is(IkiWiki::preprocess("foo", "foo", "[[!foo <<HEREDOC\n".$multiline."\nHEREDOC]]", 0, 0), + "foo($multiline)", "nested strings via heredoc (without keyless)"); +is(IkiWiki::preprocess("foo", "foo", "[[!foo '''".$multiline."''']]", 0, 0), + "foo($multiline)", "triple-single-quoted multiline string"); + TODO: { local $TODO = "nested strings not yet implemented"; $multiline='here is a string containing another [[foo val="""string""]]'; is(IkiWiki::preprocess("foo", "foo", '[[foo a="""'.$multiline.'"""]]', 0, 0), - "foo(a=> $multiline)", "nested multiline strings"); + "foo(a => $multiline)", "nested multiline strings"); }