App-Music-ChordPro
view release on metacpan or search on metacpan
t/001_prereq.t view on Meta::CPAN
#! perl
use strict;
use warnings;
use Test::More;
my $pdfapi = "PDF::API2";
my $pdfapiv = "2.045";
# PDF::API2 2.036 is ok, 2.042 is better, 2.043 is best.
for ( qw( PDF::Builder@3.025 PDF::API2@2.045 ) ) {
( $pdfapi, $pdfapiv ) = split( '@', $_ );
eval "require $pdfapi" or next;
eval '$pdfapiv = $pdfapi->VERSION($pdfapiv)' or next;
last;
}
my $test;
++$test; ok( $] >= 5.026000,
"Perl version $] is 5.026 or newer" );
++$test; use_ok( "ChordPro::Testing" );
if ( $pdfapi =~ /^pdf/i ) {
++$test; use_ok( "IO::String", 1.08 ); # for Font::TTF
# Font::TTF 1.04 is ok, 1.05 is better, 1.06 is best.
++$test; use_ok( "Font::TTF", 1.05 ); # for PDF::API2
++$test; use_ok( $pdfapi, $pdfapiv );
diag("Using $pdfapi $pdfapiv and Font::TTF $Font::TTF::VERSION for PDF generation");
}
else {
++$test; use_ok( $pdfapi, $pdfapiv );
diag("Using $pdfapi $pdfapiv for PDF generation");
}
++$test; use_ok( "Text::Layout", 0.045 );
eval {
require HarfBuzz::Shaper;
HarfBuzz::Shaper->VERSION(0.026);
diag( "Shaping enabled (HarfBuzz::Shaper $HarfBuzz::Shaper::VERSION)" );
1;
} || diag( "Shaping disabled (HarfBuzz::Shaper not found)" );
++$test; use_ok( "JSON::PP", 2.27203 );
++$test; require_ok( "JSON::XS" ); JSON::XS->VERSION(4.03);
++$test; use_ok( "String::Interpolate::Named", 1.060 );
++$test; use_ok( "File::HomeDir", 1.004 );
++$test; use_ok( "File::LoadLines", 1.047 );
++$test; use_ok( "SVGPDF", 0.080 );
++$test; use_ok( "Image::Info", 1.41 );
++$test; use_ok( "List::Util", 1.33 );
++$test; use_ok( "Storable", 3.08 );
++$test; use_ok( "Object::Pad", 0.818 );
++$test; use_ok( "JavaScript::QuickJS", 0.18 );
done_testing($test);
( run in 1.904 second using v1.01-cache-2.11-cpan-5837b0d9d2c )