82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / ExtUtils-MakeMaker / t / test_boilerplate.t
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
7 BEGIN {
8     # Always run in t to unify behavor with core
9     chdir 't' if -d 't';
10 }
11
12 # Use things from t/lib/
13 use lib './lib';
14 use strict;
15 use ExtUtils::MakeMaker;
16
17 use Test::More;
18
19 pass("Your test code goes here");
20
21 done_testing();