File: 1-basic.t

package info (click to toggle)
libpdf-fromhtml-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 576 kB
  • sloc: perl: 4,876; makefile: 15
file content (10 lines) | stat: -rw-r--r-- 211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use strict;
print "1..2\n";

require PDF::FromHTML;
print "ok 1 # loading the module\n";

my $pdf = PDF::FromHTML->new;
$pdf->can('load_file') or print "not ";
print "ok 2 # basic API sanity\n";