summaryrefslogtreecommitdiff
path: root/t/27-string-as-type.t
diff options
context:
space:
mode:
Diffstat (limited to 't/27-string-as-type.t')
-rw-r--r--t/27-string-as-type.t30
1 files changed, 30 insertions, 0 deletions
diff --git a/t/27-string-as-type.t b/t/27-string-as-type.t
new file mode 100644
index 0000000..45795cd
--- /dev/null
+++ b/t/27-string-as-type.t
@@ -0,0 +1,30 @@
+use strict;
+use warnings;
+
+use Params::Validate qw(validate);
+use Test::More;
+
+{
+ my @p = ( foo => 1 );
+
+ eval { validate( @p, { foo => { type => 'SCALAR' } }, ); };
+
+ like(
+ $@,
+ qr/\QThe 'foo' parameter ("1") has a type specification which is not a number. It is a string - SCALAR/
+ );
+}
+
+{
+ my @p = ( foo => 1 );
+
+ eval { validate( @p, { foo => { type => undef } }, ); };
+
+ like(
+ $@,
+ qr/\QThe 'foo' parameter ("1") has a type specification which is not a number. It is undef/
+ );
+
+}
+
+done_testing();