File: 02_issue1.t

package info (click to toggle)
libtest-checkmanifest-perl 1.28-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 148 kB
  • ctags: 8
  • sloc: perl: 268; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use Test::CheckManifest;
use Cwd;

{
    my $dir = Cwd::getcwd();
    ok_manifest({ filter => [ qr/\.(git|build)/, qr/Test-CheckManifest-/, qr/debian/, qr/\.pc/ ], dir => $dir });

}