File: 013_tc_message.t

package info (click to toggle)
libmoosex-params-validate-perl 0.21-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 511; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 954 bytes parent folder | download | duplicates (3)
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
42
43
## no critic (Moose::RequireCleanNamespace, Modules::ProhibitMultiplePackages, Moose::RequireMakeImmutable)
use strict;
use warnings;

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

use MooseX::Params::Validate qw( validated_list );
use Moose::Util::TypeConstraints;

subtype 'SpecialInt', as 'Int',
    where { $_ == 42 },
    message {"$_[0] is not a special int!"};

sub validate {
    my ( $int1, $int2 ) = validated_list(
        \@_,
        integer => { isa => 'Int' },
        special => { isa => 'SpecialInt' },
    );

    return;
}

my $e = exception { validate( integer => 42, special => 5 ) };
like(
    $e,
    qr/5 is not a special int\!/,
    'got custom message for SpecialInt type'
);

isa_ok(
    $e,
    'MooseX::Params::Validate::Exception::ValidationFailedForTypeConstraint'
);

like(
    exception { validate( integer => 'foo', special => 42 ) },
    qr/Validation failed for 'Int'/,
    'got standard message for Int type'
);

done_testing();