File: 00-load.t

package info (click to toggle)
libipc-run-safehandles-perl 0.04-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 172 kB
  • sloc: perl: 1,590; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl -T

use Test::More tests => 2;

my $warn;

BEGIN {
	local $SIG{__WARN__} = sub { $warn = $_[0] };
	use_ok( 'IPC::Run::SafeHandles' );
}

like($warn, qr'Use of IPC::Run::SafeHandles without using IPC::Run or IPC::Run3 first');

diag( "Testing IPC::Run::SafeHandles $IPC::Run::SafeHandles::VERSION, Perl $], $^X" );