# Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl Synapse-Object.t' ######################### # change 'tests => 1' to 'tests => last_test_to_print'; use lib ('../lib', './lib'); use Test::More tests => 5; BEGIN { use_ok('Petal::Tiny') }; my $data = join '', ; my $output = Petal::Tiny::makeitso($data, { foo => 'bar', content => 'CONTENT', dquote => '"', squote => "'", andamp => "&", lesser => "<", greate => ">", list => [ qw /foo bar baz buz/ ], } ); like ($output, qr/item="foo"/, 'item'); like ($output, qr/content="CONTENT"/, 'content'); like ($output, qr/foo="bar"/, 'foo'); like ($output, qr/special=""'&<>"/, 'special'); __DATA__