X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_with.t;h=5e86318274e09b1097a84f01c47c6b04b86aad99;hb=7c1c4dc69062bd372f6611c5a2d3e054cf777d79;hp=c8a3ef008d51e93d968a0d79a42d4c24890a9e4c;hpb=684ca75d81f91dc5302f1654d7029c93be4f5a37;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_uri_with.t b/t/aggregate/unit_core_uri_with.t index c8a3ef0..5e86318 100644 --- a/t/aggregate/unit_core_uri_with.t +++ b/t/aggregate/unit_core_uri_with.t @@ -1,12 +1,14 @@ use strict; use warnings; -use Test::More tests => 10; +use Test::More; use URI; +use Catalyst::Log; use_ok('Catalyst::Request'); my $request = Catalyst::Request->new( { + _log => Catalyst::Log->new, uri => URI->new('http://127.0.0.1/foo/bar/baz') } ); @@ -23,6 +25,7 @@ is( ); my $request2 = Catalyst::Request->new( { + _log => Catalyst::Log->new, uri => URI->new('http://127.0.0.1/foo/bar/baz?bar=gorch') } ); is( @@ -67,3 +70,5 @@ is( 'append mode URI appends arrayref param' ); +done_testing; +