123456789101112131415 #!/usr/bin/perl# Load testing for Image::Math::Constrainuse strict;BEGIN { $| = 1; $^W = 1;}use Test::More tests => 2;ok( $] >= 5.005, "Your perl is new enough" );use_ok('Image::Math::Constrain');
#!/usr/bin/perl
# Load testing for Image::Math::Constrain
use
strict;
BEGIN {
$| = 1;
$^W = 1;
}
Test::More
tests
=> 2;
ok( $] >= 5.005,
"Your perl is new enough"
);
use_ok(
'Image::Math::Constrain'