The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl
use strict;
use Test::More tests => 1;
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;