X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit%2Fcore%2Furi_for.t;h=26c14b19d4db88088d34b1dd08ccd2a4584767b4;hb=fdba7a9dced6b7a39c18632468ee593208ed006f;hp=f9d5e09a820a1ee5c6f107a5a18af39a92aad800;hpb=4be535b191e65b338b0c7d62b7c6acad83f7d455;p=catagits%2FCatalyst-Runtime.git diff --git a/t/unit/core/uri_for.t b/t/unit/core/uri_for.t index f9d5e09..26c14b1 100644 --- a/t/unit/core/uri_for.t +++ b/t/unit/core/uri_for.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 5; use Test::MockObject; use URI; @@ -28,3 +28,12 @@ is( is( Catalyst::uri_for( $context, '../quux' )->as_string, 'http://127.0.0.1/foo/quux', 'URI for relative dot path' ); + +# bug found by drewbie +$request->mock('base', sub { URI->new('http://localhost:3000/') } ); +$request->mock('match', sub { 'orderentry/contract' } ); +is( + Catalyst::uri_for( $context, '/Orderentry/saveContract' )->as_string, + 'http://localhost:3000/Orderentry/saveContract', + 'URI for absolute path' +);