The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use warnings;
use strict;
package Foo;
sub add { return $_[1] + $_[2] };

package main;
use lib ('lib');
use Test::More 'no_plan';
use Petal;
use Petal::Parser::HTB;
$Petal::INPUT = 'HTML';

$Petal::BASE_DIR = './t/data/';
$Petal::DISK_CACHE = 0;
$Petal::MEMORY_CACHE = 0;
$Petal::TAINT = 1;

my $template = new Petal ('string.xml');
my $string = $template->process (
	user => { name => 'Bruno Postle' },
	number => 2,
	math => bless {}, 'Foo'
);

like ($string, '/Hello, Bruno Postle, 2 \\+ 2 = 4/', "found");