The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tiffany::Text::MicroTemplate::File - Tiffany gateway for Text::MicroTemplate::File

SYNOPSIS

    use Tiffany;

    my $tiffany = Tiffany->load('Text::MicroTemplate::File');
    my $output = $tiffany->render(\q{hello, <?= $_[0] ?>.}, 'john');
    my $expected = "hello, john.";

    is $output, $expected;

AUTHOR

Tokuhiro Matsuno