The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;
use Template;
use Test::More tests => 1;

my $t = <<EOT;
[%- USE Text.Greeking -%]
[%- Text.Greeking() -%]
EOT

my $tt = Template->new;
my $out = "";
$tt->process(\$t, {}, \$out)
    or die $tt->error();

ok(length $out > 0);

print $out;