Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/self/root/usr/share/doc/perl-Moose/t/attributes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/usr/share/doc/perl-Moose/t/attributes/delegation_target_not_loaded.t
use strict;
use warnings;

use Test::More;
use Test::Fatal;

{
    package X;

    use Moose;

    ::like(
        ::exception{ has foo => (
                is      => 'ro',
                isa     => 'Foo',
                handles => qr/.*/,
            )
            },
        qr/\QThe foo attribute is trying to delegate to a class which has not been loaded - Foo/,
        'cannot delegate to a class which is not yet loaded'
    );

    ::like(
        ::exception{ has foo => (
                is      => 'ro',
                does    => 'Role::Foo',
                handles => qr/.*/,
            )
            },
        qr/\QThe foo attribute is trying to delegate to a role which has not been loaded - Role::Foo/,
        'cannot delegate to a role which is not yet loaded'
    );
}

done_testing;

Hry