mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-08-11 14:03:42 +00:00
14 lines
216 B
Perl
Executable File
14 lines
216 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init('podchecker');
|
|
|
|
use Test::More;
|
|
|
|
eval "use Test::Pod 1.00";
|
|
|
|
plan skip_all => "This test requires Test::Pod" if $@;
|
|
|
|
all_pod_files_ok("../blib");
|
|
|