use warnings; use strict; use Test::More tests=>3; use_ok 'Service'; my $xml = Service->create('xml', 'xmldata'); $xml->populate; is $xml->{template}, 'xmldata', 'XML'; my $json = Service->create('json', 'jsondata'); $json->populate; is $json->{template}, '{"data": jsondata}', 'JSON';