File: perltidy.t

package info (click to toggle)
libpod-pandoc-perl 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: perl: 587; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 288 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use Test::More;
use File::Find;

plan skip_all => 'these tests are for author testing'
  unless $ENV{AUTHOR_TESTING};

use_ok 'Test::PerlTidy';

foreach ( Test::PerlTidy::list_files('lib'), 'script/pod2pandoc' ) {
    ok Test::PerlTidy::is_file_tidy($_), $_;
}

done_testing;