summaryrefslogtreecommitdiff
path: root/t/exceptions/moose-meta-method-accessor-native-string-match.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2015-06-06 17:50:16 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2015-06-06 17:50:16 +0000
commit5ac2026f7eed78958d69d051e7a8e993dcf51205 (patch)
tree298c3d2f08bdfe5689998b11892d72a897985be1 /t/exceptions/moose-meta-method-accessor-native-string-match.t
downloadMoose-tarball-5ac2026f7eed78958d69d051e7a8e993dcf51205.tar.gz
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.t63
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;