George S. Baugh hace 5 años
padre
commit
e0f343aea3
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      t/www-server.psgi.t

+ 2 - 1
t/www-server.psgi.t

@@ -14,6 +14,8 @@ require "$FindBin::Bin/../www/server.psgi" or die 'Could not require server.psgi
 my $test = Plack::Test->create($tcms::app);
 
 #TODO Need a testing routing table which I can dynamically include -- a testing theme is probably the way
+my $r = $test->request(GET '/posts');
+die;
 
 subtest "HEAD requests handled correctly" => sub {
     my $res = $test->request(HEAD "/");
@@ -22,5 +24,4 @@ subtest "HEAD requests handled correctly" => sub {
     is($res->content, '', "No content actually returned by HEAD request");
 };
 
-
 done_testing();