~ubuntu-branches/ubuntu/trusty/libconfig-model-perl/trusty

« back to all changes in this revision

Viewing changes to t/pod.t

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2013-05-26 12:40:30 UTC
  • mfrom: (1.3.61)
  • Revision ID: package-import@ubuntu.com-20130526124030-nfmm6ejhjubovp7v
Tags: 2.036-1
[ gregor herrmann ]
* Add =encoding to POD in dh_config_model_upgrade.

[ Dominique Dumont ]
* Imported Upstream version 2.036
  * config-edit: added deprecation warning
  * Value: fix pod doc error in L<> (Closes: #709784)
  * Node::load_data: use a predictable order to accept elements.
    This change fixes the test failure in t/backend_ini.t
    (Closes: #709785)
  * make t/pod.t run only when AUTHOR_TESTING is set

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- cperl -*-
 
1
BEGIN {
 
2
  unless ($ENV{AUTHOR_TESTING}) {
 
3
    require Test::More;
 
4
    Test::More::plan(skip_all => 'these tests are for testing by the author');
 
5
  }
 
6
}
2
7
 
3
8
use strict;
4
9
use Test::More;
5
10
eval "use Test::Pod 1.00";
6
11
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
7
 
my @poddirs = qw( lib config-model-edit );
 
12
my @poddirs = qw( lib script );
8
13
all_pod_files_ok( all_pod_files( @poddirs ) );