File: 12-elementid.t

package info (click to toggle)
libsvg-perl 2.87-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 464 kB
  • sloc: perl: 2,789; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;

use Test::More tests => 2;
use SVG;

my $svg   = SVG->new();
my $group = $svg->group( id => 'the_group' );

is( $group->getElementID(),            "the_group", "getElementID" );
is( $svg->getElementByID("the_group"), $group,      "getElementByID" );