mirror of
https://github.com/i3/i3.git
synced 2026-02-04 11:45:31 +00:00
I suspect nobody actually uses Perl’s taint mode with AnyEvent::I3. See https://github.com/i3/i3/pull/5987 for discussion.
14 lines
269 B
Perl
14 lines
269 B
Perl
#!perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
|
|
unless ( $ENV{RELEASE_TESTING} ) {
|
|
plan( skip_all => "Author tests not required for installation" );
|
|
}
|
|
|
|
eval "use Test::CheckManifest 0.9";
|
|
plan skip_all => "Test::CheckManifest 0.9 required" if $@;
|
|
ok_manifest();
|