The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More tests => 2;
use Sledge::Template::Xslate;

my $option = {
    syntax => 'TTerse',
    module => ['Text::Xslate::Bridge::TT2Like'],
};

isnt(Text::Xslate->new($option), Text::Xslate->new($option));
is(Sledge::Template::Xslate::create_xslate($option), Sledge::Template::Xslate::create_xslate($option));