File: 00_compile.t

package info (click to toggle)
librdf-trine-perl 1.019-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,200 kB
  • sloc: perl: 17,601; sql: 20; makefile: 8; sh: 1
file content (11 lines) | stat: -rwxr-xr-x 333 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;
use Test::More;

use Module::Load::Conditional qw[can_load];
unless (can_load( modules => { 'Test::Compile' => 0 })) {
  plan skip_all => "Test::Compile must be installed for compilation tests";
}
Test::Compile->import;
pm_file_ok($_) for grep { !m/Redland|mysql|Pg|Redis/ } all_pm_files();
done_testing();