File: 97_distribution.t

package info (click to toggle)
libunicode-maputf8-perl 1.11-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 156 kB
  • ctags: 19
  • sloc: perl: 603; makefile: 38
file content (19 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;

use lib  ('./blib','../blib', './lib', '../lib');

eval {
    require Test::More;
};
if ($@) {
    $|++;
    print "1..0 # Skipped: Test::More required for testing distribution\n";
    exit;
}
eval {
    require Test::Distribution;
};
if ($@) {
    Test::More::plan( skip_all => 'Test::Distribution not installed' );
}
Test::Distribution->import('only' => [qw(prereq sig description)]);