File: changes.t

package info (click to toggle)
libppix-regexp-perl 0.089-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,520 kB
  • sloc: perl: 8,012; makefile: 8
file content (27 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package main;

use 5.006;

use strict;
use warnings;

use Test::More 0.88;	# Because of done_testing();

BEGIN {
    eval {
	require Test::CPAN::Changes;
	Test::CPAN::Changes->import();
	1;
    } or do {
	plan	skip_all => 'Unable to load Test::CPAN::Changes';
	exit;
    };
}

changes_file_ok( Changes => { next_token => 'next_release' } );

done_testing;

1;

# ex: set textwidth=72 :