~ubuntu-branches/ubuntu/trusty/libpod-pom-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/93-kwalitee.t

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-01-02 22:03:47 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140102220347-97updt9c59m983qa
Tags: 0.29-1
* New upstream release.
* Install all example scripts.
* Update years of copyright.
* Drop unversioned perl from Depends.
* Declare compliance with Debian Policy 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/perl
2
 
# $Id: 93-kwalitee.t 4105 2009-03-03 09:50:27Z andrew $
3
 
 
4
 
use Test::More;
5
 
 
6
 
eval {
7
 
    require Test::Kwalitee;
8
 
 
9
 
    # Skip Pod tests - they are tested by other unit tests anyway
10
 
    Test::Kwalitee->import( tests => [ qw( -no_pod_errors -has_test_pod -has_test_pod_coverage ) ] ) };
11
 
 
12
 
plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;