File: release-cpan-changes.t

package info (click to toggle)
libmoosex-params-validate-perl 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 328 kB
  • ctags: 10
  • sloc: perl: 511; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (78)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!perl

BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}


use strict;
use warnings;

use Test::More 0.96 tests => 2;
use_ok('Test::CPAN::Changes');
subtest 'changes_ok' => sub {
    changes_file_ok('Changes');
};
done_testing();