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

use strict;
use Test::More;

use Text::Xslate;

use t::lib::Util;

my $tx = Text::Xslate->new();

is $tx->render_string("Hello, world!"),        "Hello, world!";
is $tx->render_string("Hello, world!", undef), "Hello, world!";

done_testing;