~ubuntu-branches/ubuntu/wily/libtext-sprintfn-perl/wily

« back to all changes in this revision

Viewing changes to t/release-pod-coverage.t

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard, upstream, Jonas Smedegaard
  • Date: 2015-08-04 11:47:58 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150804114758-ywzpik08uj1h2y1a
Tags: 0.07-1
[ upstream ]
* New release.

[ Jonas Smedegaard ]
* Switch download URL for get-orig-source target.
* Modernize git-buildpackage config: Avoid git- prefix.
* Update copyright info:
  + Extend coverage of packaging to include current year.
  + Use License-Grant and License-Reference fields.
    Thanks to Ben Finney.
  + Replace (yes, not add) main upstream author.
* Bump debhelper compatibility level to 9.
* Add another author-specific download URL to watch file.
* Override lintian regarding build-depending unversioned on debhelper.
* Override lintian regarding license in License-Reference field.
  See bug#786450.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
  }
8
8
}
9
9
 
10
 
 
11
 
use Test::More;
12
 
 
13
 
eval "use Test::Pod::Coverage 1.08";
14
 
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
15
 
  if $@;
16
 
 
17
 
eval "use Pod::Coverage::TrustPod";
18
 
plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage"
19
 
  if $@;
 
10
# This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests.
 
11
 
 
12
use Test::Pod::Coverage 1.08;
 
13
use Pod::Coverage::TrustPod;
20
14
 
21
15
all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });