~ubuntu-branches/ubuntu/vivid/libhtml-widgets-navmenu-perl/vivid

« back to all changes in this revision

Viewing changes to t/cpan-changes.t

  • Committer: Package Import Robot
  • Author(s): gregor herrmann, Salvatore Bonaccorso, gregor herrmann
  • Date: 2013-10-22 19:25:07 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20131022192507-2920pk4u9pcz3g5z
Tags: 1.0702-1
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ gregor herrmann ]
* New upstream release.
* Add build dependency on libcpan-changes-perl.
* Update years of packaging copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
use Test::More;
 
7
 
 
8
eval 'use Test::CPAN::Changes';
 
9
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
 
10
 
 
11
changes_ok();
 
12