The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestsFor::Alpha::Subclass;

use Test::Class::Moose extends => 'TestsFor::Alpha';

sub test_another {
    sleep 1;
    ok 1;
}

1;