remove mistaken file 5.90076
John Napiorkowski [Fri, 14 Nov 2014 00:09:56 +0000 (18:09 -0600)]
t/utf_incoming.t [deleted file]

diff --git a/t/utf_incoming.t b/t/utf_incoming.t
deleted file mode 100644 (file)
index b0f908f..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-use utf8;
-use warnings;
-use strict;
-
-use Test::More;
-use HTTP::Request::Common;
-use Plack::Test;
-
-# Test cases for incoming utf8 
-
-{
-  package MyApp::Controller::Root;
-  $INC{'MyApp/Controller/Root.pm'} = __FILE__;
-
-  use base 'Catalyst::Controller';
-
-  sub heart :Path('♥') {
-    my ($self, $c) = @_;
-    $c->response->body("This is the body");
-  }
-
-  sub hat :Path('^') {
-    my ($self, $c) = @_;
-    $c->response->body("This is the body");
-  }
-
-  sub base :Chained('/') CaptureArgs(0) { }
-    sub link :Chained('base') PathPart('♥') Args(0) {
-      my ($self, $c) = @_;
-      $c->response->body("This is the body");
-    }
-
-  package MyApp;
-  use Catalyst;
-
-  Test::More::ok(MyApp->setup, 'setup app');
-}
-
-ok my $psgi = MyApp->psgi_app, 'build psgi app';
-
-test_psgi $psgi, sub {
-    my $cb = shift;
-    #my $res = $cb->(GET "/root/test");
-    #is $res->code, 200, 'OK';
-    #is $res->content, 'This is the body', 'correct body';
-    #is $res->content_length, 16, 'correct length';
-};
-
-done_testing;