From 8e120bf7182e93f27d4afa446193986e6309b485 Mon Sep 17 00:00:00 2001 From: Timo Paulssen Date: Sun, 1 May 2011 02:37:18 +0200 Subject: [PATCH] added test cases for heredoc and triple-single. --- t/preprocess.t | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/t/preprocess.t b/t/preprocess.t index 4a140bb61..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 => 33; +use Test::More tests => 34; BEGIN { use_ok("IkiWiki"); } @@ -67,15 +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=< $multiline)", "heredoc for key"); -is(IkiWiki::preprocess("foo", "foo", "[[!foo < $multiline)", "nested strings via heredoc (for key)"); +is(IkiWiki::preprocess("foo", "foo", "[[!foo < $multiline)", "nested multiline strings"); + "foo(a => $multiline)", "nested multiline strings"); } -- 2.44.0