The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Test::More tests => 2;
use SVG ( -indent => '*', -elsep => '|', -nocredits => 1 );

# test: -indent -elsep -nocredits

my $svg = SVG->new();
$svg->group->text->cdata("Look and Feel");

my $xml = $svg->render();

like( $xml, qr/\n|\|/, "correct element separation" );
like( $xml, qr/\*\*/,  "correct indent string" );