File: kwalitee.t

package info (click to toggle)
libppix-regexp-perl 0.089-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,520 kB
  • sloc: perl: 8,012; makefile: 8
file content (20 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main;

use 5.006002;

use strict;
use warnings;

use Test::More 0.88;

eval {
    require Test::Kwalitee;
    Test::Kwalitee->import();
    -f 'Debian_CPANTS.txt'		# Don't know what this is,
	and unlink 'Debian_CPANTS.txt';	# but _I_ didn't order it.
    1;
} or plan skip_all => 'Test::Kwalitee not found';

1;

# ex: set textwidth=72 :