blob: c85cc7be526624143597e425138edc38cd28eb0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
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;
|