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

use strict;
use warnings;
use lib 't/lib';

BEGIN {
    package Test::Kit::Tester;
    use Test::More tests => 1;
    require Test::Kit;

    #
    # test composition
    #

    Test::Kit->import(
        'Test::More',
        'NaughtyTest' => {
            exclude => [qw/ok/],
        },
    );
}
ok 1, '... and the Test::More functions should be exported';