Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestAppUnknownError.pm
diff --git a/trunk/t/lib/TestAppUnknownError.pm b/trunk/t/lib/TestAppUnknownError.pm
deleted file mode 100644 (file)
index 819a34c..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package TestApp;
-
-use strict;
-use warnings;
-
-use Catalyst::Runtime 5.70;
-
-use base qw/Catalyst/;
-
-use Catalyst;
-
-__PACKAGE__->setup();
-
-sub _test {
-    my $self = shift;
-    $self->_method_which_does_not_exist;
-}
-
-__PACKAGE__->_test;
-
-1;
-