The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314 #!/usr/bin/env perl -wuse strict;use warnings;use lib qw(t/lib lib);use Test::More qw( no_plan );use Text::Template::Simple;use MyUtil;ok( my $t = Text::Template::Simple->new(), 'Got the object' );ok( my $out = $t->compile( 't/data/recursive.tts' ), 'Compile' );_p $out, "\n";ok( $out, 'Nasty recursive test did not fail' );
#!/usr/bin/env perl -w
use
strict;
warnings;
lib
qw(t/lib lib)
;
Test::More
qw( no_plan )
Text::Template::Simple;
MyUtil;
ok(
my
$t
= Text::Template::Simple->new(),
'Got the object'
);
$out
=
->compile(
't/data/recursive.tts'
),
'Compile'
_p
,
"\n"
'Nasty recursive test did not fail'