The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

# <<<Fill in with what this test does.>>>
# Copy this when writing new tests to avoid forgetting the core boilerplate

# Magic for core
BEGIN {
    # Always run in t to unify behavor with core
    chdir 't' if -d 't';

    # Only use the about to be installed modules
    if( $ENV{PERL_CORE} ) {
        @INC = '../lib';
    }
}

# Use things from t/lib/
use lib './lib';
use strict;
use ExtUtils::MakeMaker;

use Test::More;

pass("Your test code goes here");

done_testing();