Woo, Emmanuel Quevillon's mailing list mail gave me enough clues to actually be able...
[catagits/Catalyst-Runtime.git] / t / lib / TestAppUnknownError.pm
diff --git a/t/lib/TestAppUnknownError.pm b/t/lib/TestAppUnknownError.pm
new file mode 100644 (file)
index 0000000..819a34c
--- /dev/null
@@ -0,0 +1,22 @@
+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;
+