This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ParseXS - better support for duplicate ALIASes
[perl5.git] / dist / ExtUtils-ParseXS / t / 501-t-compile.t
1 #!/usr/bin/perl
2 use strict;
3 BEGIN {
4         $|  = 1;
5         $^W = 1;
6 }
7
8 use Test::More tests => 2;
9
10 # Check their perl version
11 ok( $] >= 5.006001, "Your perl is new enough" );
12
13 # Does the module load
14 use_ok( 'ExtUtils::Typemaps'   );