in reply to CPAN Tests Failing [SOLVED]

As I understand it, if your META file contains a "provides" section, the CPAN indexer doesn't do its normal file crawling to figure out what packages are contained within your release - it just trusts whatever is in "provides". Thus the "no_index" bit is basically a no-op.

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