Merge pull request #170 from perl-catalyst/haarg/no-dev-circ-deps
[catagits/Catalyst-Runtime.git] / t / dead_load_bad_args.t
index 8542a13..58c2f11 100644 (file)
@@ -1,17 +1,23 @@
-#!perl
-
 use strict;
 use warnings;
 use lib 't/lib';
 
 use Test::More;
 
+# This test needs to be rewritten (and the code it was using as well) since
+# when we added the arg and capturearg type constraint support, we now allow
+# non integer values.  however we could probably support some additional sanity
+# testing on the values, so this is a nice TODO for someone -jnap
+
+plan skip_all => 'Removing this test because constraint arg types allow this';
+
 use Catalyst::Test 'TestApp';
 
 for my $fail (
     "(' ')",
     "('')",
     "('1.23')",
+    "(-1)",
 ) {
     for my $type (qw(Args CaptureArgs)) {
         eval <<"END";