The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use TAP::SimpleOutput 'counters';
{
package TestRole;
use Moose::Deprecated -api_version => '1.07'; # don't complain
has yes_lazy => (is => 'ro', default => sub { }, lazy => 1);
has no_lazy => (is => 'ro', default => sub { }, lazy => 0);
has null_lazy => (is => 'ro', default => sub { });
}
{
package TestClass;
use Moose;
use Moose::Deprecated -api_version => '1.07'; # don't complain
has yes_lazy => (is => 'ro', default => sub { }, lazy => 1);
has no_lazy => (is => 'ro', default => sub { }, lazy => 0);
has null_lazy => (is => 'ro', default => sub { });
}
note 'finds lazy correctly';
for my $thing (qw{ TestClass TestRole }) {
my ($_ok, $_nok, $_skip) = counters();
my $name = 'yes_lazy';
test_out $_ok->("$thing has an attribute named $name");
test_out $_ok->("${thing}'s attribute $name is lazy");
test_out $_ok->("$thing has an attribute named $name");
test_out $_nok->("${thing}'s attribute $name is not lazy");
test_fail 7;
test_out $_ok->("$thing has an attribute named $name");
test_out $_nok->("${thing}'s attribute $name is not lazy");
test_fail 7;
validate_attribute $thing => $name => (
lazy => 1,
);
validate_attribute $thing => $name => (
lazy => 0,
);
validate_attribute $thing => $name => (
lazy => undef,
);
test_test "finds lazy correctly in $thing";
}
note 'finds no lazy correctly';
for my $thing (qw{ TestClass TestRole}) {
my ($_ok, $_nok, $_skip) = counters();
my $name = 'no_lazy';
test_out $_ok->("$thing has an attribute named $name");
test_out $_nok->("${thing}'s attribute $name is lazy");
test_fail 5;
test_out $_ok->("$thing has an attribute named $name");
test_out $_ok->("${thing}'s attribute $name is not lazy");
test_out $_ok->("$thing has an attribute named $name");
test_out $_ok->("${thing}'s attribute $name is not lazy");
validate_attribute $thing => $name => (
lazy => 1,
);
validate_attribute $thing => $name => (
lazy => 0,
);
validate_attribute $thing => $name => (
lazy => undef,
);
test_test "finds no lazy correctly in $thing";
}
done_testing;