File: 00-load.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 (15 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More tests => 5;

BEGIN {
    use_ok('SVG')            || print "Bail out!\n";
    use_ok('SVG::DOM')       || print "Bail out!\n";
    use_ok('SVG::Element')   || print "Bail out!\n";
    use_ok('SVG::Extension') || print "Bail out!\n";
    use_ok('SVG::XML')       || print "Bail out!\n";
}

diag("Testing SVG $SVG::VERSION, Perl $], $^X");