Add a comment to force emacs to use C mode.
[p5sagit/Devel-Size.git] / t / pod.t
1 #!/usr/bin/perl -w
2
3 use Test::More;
4 use strict;
5    
6 my $tests;
7
8 BEGIN
9    {
10    $tests = 1;
11    plan tests => $tests;
12    chdir 't' if -d 't';
13    use lib '../lib';
14    };
15
16 SKIP:
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