From: Curtis "Ovid" Poe Date: Mon, 20 Feb 2006 23:07:24 +0000 (+0000) Subject: Oh, the humiliation of forgetting to add a test plugin :( X-Git-Tag: 5.7099_04~702 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=39d3146da288d2eb8a1d3df5ed7fcaebd4f6755e Oh, the humiliation of forgetting to add a test plugin :( --- diff --git a/t/lib/TestApp/Plugin/FullyQualified.pm b/t/lib/TestApp/Plugin/FullyQualified.pm new file mode 100644 index 0000000..137af1a --- /dev/null +++ b/t/lib/TestApp/Plugin/FullyQualified.pm @@ -0,0 +1,13 @@ +package TestApp::Plugin::FullyQualified; + +use strict; + +sub fully_qualified { + my $c = shift; + + $c->stash->{fully_qualified} = 1; + + return $c; +} + +1;