This is 0.79_54 - update META.yml, and META.json
[p5sagit/Devel-Size.git] / t / pod.t
CommitLineData
0430b7f7 1#!/usr/bin/perl -w
2
3use Test::More;
4use strict;
5
6my $tests;
7
8BEGIN
9 {
10 $tests = 1;
11 plan tests => $tests;
12 chdir 't' if -d 't';
13 use lib '../lib';
14 };
15
16SKIP:
17 {
18 skip( 'Test::Pod not installed on this system', $tests )
19 unless do
20 {
21 eval "use Test::Pod;";
22 $@ ? 0 : 1;
23 };
24 pod_file_ok( '../lib/Devel/Size.pm' );
25 }
26