The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestsFor::Basic::WithRole;
use Test::Class::Moose;

with qw/TestsFor::Basic::Role/;

sub test_in_withrole {
    pass "Got here";
}

1;