taint_warn revision 7c478bd95313f5f23a4c958a745db2134aa03244
#!/usr/bin/perl -tw
use lib qw(t/lib);
use Test::More tests => 1;
my $warnings = '';
{
local $SIG{__WARN__} = sub { $warnings .= join '', @_ };
kill 0, $^X;
}
like( $warnings, '/^Insecure dependency/', '-t honored' );