Oh, the humiliation of forgetting to add a test plugin :(
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Plugin / FullyQualified.pm
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;