Blame t/01_compile.t

Packit 549706
#!/usr/bin/perl
Packit 549706
Packit 549706
# Load testing for prefork.pm
Packit 549706
Packit 549706
use strict;
Packit 549706
BEGIN {
Packit 549706
	$|  = 1;
Packit 549706
	$^W = 1;
Packit 549706
}
Packit 549706
use Test::More tests => 2;
Packit 549706
Packit 549706
# Check their perl version
Packit 549706
ok( $] >= 5.005, "Your perl is new enough" );
Packit 549706
Packit 549706
# Does the module load
Packit 549706
use_ok('prefork');