~ubuntu-branches/ubuntu/hardy/liblingua-stem-perl/hardy

« back to all changes in this revision

Viewing changes to t/97_distribution.t

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2006-08-23 20:10:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060823201009-a35rbiz7d292nlko
Tags: 0.82-1
* New upstream release
* Update Standards-Version (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
 
 
3
use lib  ('./blib','../blib', './lib', '../lib');
 
4
 
 
5
eval {
 
6
    require Test::More;
 
7
};
 
8
if ($@) {
 
9
    $|++;
 
10
    print "1..0 # Skipped: Test::More required for testing distribution\n";
 
11
    exit;
 
12
}
 
13
eval {
 
14
    require Test::Distribution;
 
15
};
 
16
if ($@) {
 
17
    Test::More::plan( skip_all => 'Test::Distribution not installed' );
 
18
}
 
19
Test::Distribution->import('only' => [qw(prereq sig description)]);