File: manifest.t

package info (click to toggle)
libdatetime-calendar-julian-perl 0.107-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 81; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (6)
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
package main;

use strict;
use warnings;

use Test::More 0.88;

BEGIN {
    eval {
	require ExtUtils::Manifest;
	1;
    } or do {
	plan skip_all => 'Can not load ExtUtils::Manifest';
	exit;
    };
}

my @got = ExtUtils::Manifest->manicheck();
ok @got == 0, 'Missing files per MANIFEST';

@got = ExtUtils::Manifest->filecheck();
ok @got == 0, 'Files not in MANIFEST or MANIFEST.SKIP';

done_testing;

1;