#!/usr/bin/perl -w # <<>> # 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'; } # Use things from t/lib/ use lib './lib'; use strict; use warnings; use ExtUtils::MakeMaker; use Test::More tests => 1; ok(1, "Your test code goes here");