add a map type
[gitmo/MooseX-Types-Structured.git] / t / 04-map.t
CommitLineData
678b4064 1use strict;
2use warnings;
3use Test::More;
4
5use MooseX::Types::Moose qw(Int Num);
6use MooseX::Types::Structured qw(Map);
7use Try::Tiny;
8
9my $type = Map[ Int, Num ];
10
11ok($type->assert_valid({ 10 => 10.5 }), "simple Int -> Num mapping");
12
13eval { $type->assert_valid({ 10.5 => 10.5 }) };
14like($@, qr{value 10\.5}, "non-Int causes rejection on key");
15
16eval { $type->assert_valid({ 10 => "ten and a half" }) };
17like("$@", qr{value ten and a half}, "non-Num value causes rejection on value");
18
19ok($type->assert_valid({ }), "empty hashref is a valid mapping of any sort");
20
21done_testing;
22