xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/test_boilerplate.t (revision 256a93a44f36679bee503f12e49566c2183f6181)
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
12# Use things from t/lib/
13use lib './lib';
14use strict;
15use warnings;
16use ExtUtils::MakeMaker;
17
18use Test::More tests => 1;
19
20ok(1, "Your test code goes here");
21