File: 05-bare-exclude.t

package info (click to toggle)
libtest-kwalitee-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 88 kB
  • ctags: 2
  • sloc: perl: 150; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

eval
{
	require Test::Kwalitee;
	Test::Kwalitee->import( tests => [qw( -use_strict -has_readme )] );
};

plan( skip_all => "Test::Kwalitee not installed: $@; skipping" ) if $@;