X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_for_action.t;h=499a1c7566e2ad3a917cb56110ec34c8b10bbea9;hp=833677933c7a461bdd3d08f33ece5434904a67be;hb=4ac0b9cb8e9043db8a95f44af685c782bf9426e7;hpb=833b385e3d6454bd249acf859869bf1792109b82 diff --git a/t/aggregate/unit_core_uri_for_action.t b/t/aggregate/unit_core_uri_for_action.t index 8336779..499a1c7 100644 --- a/t/aggregate/unit_core_uri_for_action.t +++ b/t/aggregate/unit_core_uri_for_action.t @@ -8,7 +8,7 @@ use lib "$FindBin::Bin/../lib"; use Test::More; -plan tests => 28; +plan tests => 29; use_ok('TestApp'); @@ -164,6 +164,10 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ), 'http://127.0.0.1/foo/chained/empty/23/13?q=3', 'uri_for_action returns correct uri for chain with many empty path parts' ); -} + eval { $context->uri_for_action( '/does/not/exist' ) }; + like $@, qr{^Can't find action for path '/does/not/exist'}, + 'uri_for_action croaks on nonexistent path'; + +}