File: 05_kwalitee.t

package info (click to toggle)
libtest-compile-perl 0.13-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 308 kB
  • ctags: 228
  • sloc: perl: 3,034; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!perl
use strict;
use warnings;
use FindBin '$Bin';
use Test::More;
plan skip_all => 'skip author tests during AUTOMATED_TESTING' if
    $ENV{AUTOMATED_TESTING};
eval 'use Test::Kwalitee; 1' or
    plan skip_all => 'Test::Kwalitee required';
my $file = "$Bin/../../Debian_CPANTS.txt";
if (-e $file) {
    unlink $file or die "can't unlink $file: $!\n";
}