diff options
Diffstat (limited to 't/exceptions/moose-meta-method-accessor-native-string-match.t')
-rw-r--r-- | t/exceptions/moose-meta-method-accessor-native-string-match.t | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/t/exceptions/moose-meta-method-accessor-native-string-match.t b/t/exceptions/moose-meta-method-accessor-native-string-match.t new file mode 100644 index 0000000..9ec9ce8 --- /dev/null +++ b/t/exceptions/moose-meta-method-accessor-native-string-match.t @@ -0,0 +1,63 @@ +use strict; +use warnings; + +use Test::More; +use Test::Fatal; + +use Moose(); + +{ + package Foo; + use Moose; + + has 'foo' => ( + is => 'ro', + isa => 'Str', + traits => ['String'], + handles => { + match => 'match' + }, + required => 1 + ); +} + +my $foo_obj = Foo->new( foo => 'hello' ); + +{ + my $arg = [12]; + my $exception = exception { + $foo_obj->match( $arg ); + }; + + like( + $exception, + qr/The argument passed to match must be a string or regexp reference/, + "an Array Ref passed to match"); + + isa_ok( + $exception, + 'Moose::Exception::InvalidArgumentToMethod', + "an Array Ref passed to match"); + + is( + $exception->argument, + $arg, + "an Array Ref passed to match"); + + is( + $exception->type_of_argument, + "string or regexp reference", + "an Array Ref passed to match"); + + is( + $exception->method_name, + "match", + "an Array Ref passed to match"); + + is( + $exception->type, + "Str|RegexpRef", + "an Array Ref passed to match"); +} + +done_testing; |