in reply to Re: Test::More subtest parameters
in thread Test::More subtest parameters

I do something fairly similar to that here.

I use subtest from time to time, but not very often.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name