File: pod.t

package info (click to toggle)
libtest-if-perl 0.01-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 212 kB
  • sloc: perl: 1,833; sh: 22; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env perl

use strict;
use warnings;
use lib::abs '../lib';

use Test::More;
use Test::If
	sub { chdir lib::abs::path '..' },
	'Test::Pod 1.22',
;

all_pod_files_ok();
exit 0;
# kwalitee hacks
require Test::Pod;
require Test::NoWarnings;