Latest update.

This commit is contained in:
2019-09-21 00:43:47 +09:00
parent 2e57f602ae
commit 62515c7d8d
1131 changed files with 47556 additions and 24957 deletions
+17
View File
@@ -0,0 +1,17 @@
#!perl
#
# Test for comments within an inline code block
use strict;
use warnings;
use Test::More tests => 2;
use_ok 'Text::Template' or exit 1;
my $tmpl = Text::Template->new(
TYPE => 'STRING',
SOURCE => "Hello {\$name#comment}");
my $vars = { name => 'Bob' };
is $tmpl->fill_in(HASH => $vars), 'Hello Bob';