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/exceptions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/usr/share/doc/perl-Moose/t/exceptions/class-mop-method.t
use strict;
use warnings;

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

use Moose();

{
    my $exception =  exception {
        Class::MOP::Method->wrap( "foo", ( name => "Bar"));
    };

    like(
        $exception,
        qr/\QYou must supply a CODE reference to bless, not (foo)/,
        "first argument to wrap should be a CODE ref");

    isa_ok(
        $exception,
        "Moose::Exception::WrapTakesACodeRefToBless",
        "first argument to wrap should be a CODE ref");
}

{
    my $exception =  exception {
        Class::MOP::Method->wrap( sub { "foo" }, ());
    };

    like(
        $exception,
        qr/You must supply the package_name and name parameters/,
        "no package name is given to wrap");

    isa_ok(
        $exception,
        "Moose::Exception::PackageNameAndNameParamsNotGivenToWrap",
        "no package name is given to wrap");
}

done_testing;

Hry