File: cmap.t

package info (click to toggle)
libpdf-builder-perl 3.027-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,992 kB
  • sloc: perl: 107,532; makefile: 10
file content (15 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
use warnings;
use strict;

use Test::More tests => 1;

use PDF::Builder;

my $pdf = PDF::Builder->new();
my $font = $pdf->cjkfont('simplified');

is(ref($font), 'PDF::Builder::Resource::CIDFont::CJKFont',
   q{Check that .cmap files are being used});

1;