File: 00-load.t

package info (click to toggle)
libtext-layout-perl 0.045-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 548 kB
  • sloc: perl: 4,117; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!perl -T

use Test::More tests => 6;

BEGIN {
    use_ok( 'Text::Layout::FontConfig' );
    use_ok( 'Text::Layout' );
}

note( "Testing Text::Layout $Text::Layout::VERSION, Perl $], $^X" );

eval {
    require HarfBuzz::Shaper;
    HarfBuzz::Shaper->VERSION(0.018);
    diag( "Shaping enabled (HarfBuzz::Shaper $HarfBuzz::Shaper::VERSION)" );
    1;
} || note( "Shaping disabled (HarfBuzz::Shaper not found)" );

BEGIN {
    use_ok( 'Text::Layout::Markdown' );
    use_ok( 'Text::Layout::PDFAPI2' );
    use_ok( 'Text::Layout::Pango' );
    use_ok( 'Text::Layout::Cairo' );
}