ExtUtils::MakeMaker 6.55_02
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / test_boilerplate.t
CommitLineData
d00e3d8a 1#!/usr/bin/perl -w
2
3# <<<Fill in with what this test does.>>>
4# Copy this when writing new tests to avoid forgetting the core boilerplate
5
6# Magic for core
7BEGIN {
8 # Always run in t to unify behavor with core
9 chdir 't' if -d 't';
10
11 # Only use the about to be installed modules
12 if( $ENV{PERL_CORE} ) {
13 @INC = '../lib';
14 }
15}
16
17# Use things from t/lib/
18use lib './lib';
19use strict;
20use ExtUtils::MakeMaker;
21
22use Test::More;
23
24pass("Your test code goes here");
25
26done_testing();