fix Authentication::User test that is no longer relevant (due to changeset 3101)
David Kamholz [Sun, 26 Feb 2006 19:54:41 +0000 (19:54 +0000)]
t/06_user.t

index f408163..ce07fe8 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 7;
+use Test::More tests => 6;
 use Test::Exception;
 
 my $m; BEGIN { use_ok($m = "Catalyst::Plugin::Authentication::User") }
@@ -35,10 +35,10 @@ ok( !$o->supports(qw/feature unsupported_subfeature/), "traversal terminating in
 
 lives_ok {
        $o->supports("bad_key");
-} "cant check for non existent feature";
+} "can check for non existent feature";
 
-dies_ok {
-       $o->supports(qw/bad_key subfeature/)
-} "but can't traverse into one";
+#dies_ok {
+#      $o->supports(qw/bad_key subfeature/)
+#} "but can't traverse into one";