1#!/usr/bin/perl
2use strict;
3BEGIN {
4	$|  = 1;
5	$^W = 1;
6}
7
8use Test::More tests => 2;
9
10# Check their perl version
11ok( $] >= 5.006001, "Your perl is new enough" );
12
13# Does the module load
14use_ok( 'ExtUtils::Typemaps'   );
15