blob: bf7a227a515ee4d392eb6fceb64b06985f4451ec [file] [log] [blame]
#!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';