File: apocalypse.t

package info (click to toggle)
libpoe-component-server-soap-perl 1.14-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 172 kB
  • sloc: perl: 624; makefile: 2
file content (12 lines) | stat: -r--r--r-- 315 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use strict; use warnings;

use Test::More;
eval "use Test::Apocalypse";
if ( $@ ) {
	plan skip_all => 'Test::Apocalypse required for validating the distribution';
} else {
	# lousy hack for kwalitee
	require Test::NoWarnings; require Test::Pod; require Test::Pod::Coverage;
	is_apocalypse_here();
}