Oh, the humiliation of forgetting to add a test plugin :(
Curtis "Ovid" Poe [Mon, 20 Feb 2006 23:07:24 +0000 (23:07 +0000)]
t/lib/TestApp/Plugin/FullyQualified.pm [new file with mode: 0644]

diff --git a/t/lib/TestApp/Plugin/FullyQualified.pm b/t/lib/TestApp/Plugin/FullyQualified.pm
new file mode 100644 (file)
index 0000000..137af1a
--- /dev/null
@@ -0,0 +1,13 @@
+package TestApp::Plugin::FullyQualified;
+
+use strict;
+
+sub fully_qualified {
+    my $c = shift;
+
+    $c->stash->{fully_qualified} = 1;
+
+    return $c;
+}
+
+1;