File: 99-dist.t

package info (click to toggle)
libanyevent-memcached-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 332 kB
  • sloc: perl: 3,494; makefile: 7
file content (25 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/perl

use lib::abs '../lib';
use Test::More;
use Test::If 'Test::Dist';
use Test::NoWarnings;
chdir lib::abs::path('..');

Test::Dist::dist_ok(
	'+' => 1,
	run => 1,
	skip => [qw(prereq)],
	kwalitee => {
		req => [qw( has_separate_license_file has_example
		metayml_has_provides metayml_declares_perl_version
		uses_test_nowarnings 
		)],
	},
	prereq => [
		undef,undef, [qw( Test::Pod Test::Pod::Coverage )],
	],
	podcover => { mod_match => qr{^AnyEvent::Memcached$}, mod_skip => [qr{^AnyEvent::Memcached::}] },
);
exit 0;
require Test::Pod::Coverage; # kwalitee hacks, hope temporary