The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestMyMo;
use lib 'xt';
use MyMo;

has this => builder => 'that';
has thunk => default => sub { 'DEfault' };

sub that {
    $_[0]->thought;
}

sub thought {
    'Yep!';
}