File: 00-load.t

package info (click to toggle)
libpdf-create-perl 1.46-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 652 kB
  • sloc: perl: 3,352; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More tests => 5;

BEGIN {
    use_ok('PDF::Create')          || print "Bail out!\n";
    use_ok('PDF::Create::Page')    || print "Bail out!\n";
    use_ok('PDF::Create::Outline') || print "Bail out!\n";
    use_ok('PDF::Image::GIF')      || print "Bail out!\n";
    use_ok('PDF::Image::JPEG')     || print "Bail out!\n";
}

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