From: David Kamholz Date: Sun, 26 Feb 2006 19:54:41 +0000 (+0000) Subject: fix Authentication::User test that is no longer relevant (due to changeset 3101) X-Git-Tag: v0.07~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fa194d256f56091845d8a129006bf24b621326f0;p=catagits%2FCatalyst-Plugin-Authentication.git fix Authentication::User test that is no longer relevant (due to changeset 3101) --- diff --git a/t/06_user.t b/t/06_user.t index f408163..ce07fe8 100644 --- a/t/06_user.t +++ b/t/06_user.t @@ -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";