The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/env perl -w
use strict;
use lib qw(t/lib lib);
use Test::More qw( no_plan );
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' );