Skip to content

Commit f108125

Browse files
add a test that verifies the distribution MANIFEST
1 parent 830ea00 commit f108125

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ MANIFEST This list of files
1515
MANIFEST.SKIP
1616
README
1717
t/common-req.t
18+
t/distmanifest.t
1819
t/headers-auth.t
1920
t/headers-etag.t
2021
t/headers-util.t

t/distmanifest.t

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
use strict;
2+
use warnings;
3+
4+
use Test::More;
5+
BEGIN {
6+
plan skip_all => 'these tests are for authors only!'
7+
unless -d '.git' || $ENV{AUTHOR_TESTING};
8+
}
9+
10+
use Test::DistManifest;
11+
manifest_ok();

0 commit comments

Comments
 (0)