File: 01_compile.t

package info (click to toggle)
libextutils-typemap-perl 1.00-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: perl: 276; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
BEGIN {
  $|  = 1;
  $^W = 1;
}

use Test::More tests => 2;

# Check their perl version
ok( $] >= 5.006001, "Your perl is new enough" );

# Does the module load
use_ok( 'ExtUtils::Typemap' );