added missing test class.
Marcus Ramberg [Wed, 10 Aug 2005 13:39:46 +0000 (13:39 +0000)]
Changes
t/lib/TestApp/View/Dump/False.pm [new file with mode: 0644]

diff --git a/Changes b/Changes
index 7b4faf1..72895a8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,7 +5,7 @@ This file documents the revision history for Perl extension Catalyst.
 5.32  2005-08-10 15:10:00
        - Dispatcher might fail if object returns false. (Florian Ragwitz)
 
-5.31  2005-06-04 12:35:00
+5.31  2005-06-04 12:35:00 (never released to CPAN)
 
         - helpers now create .new files where files already exist and differ
         - fixed $Data::Dumper::Terse (Robin Berjon)
diff --git a/t/lib/TestApp/View/Dump/False.pm b/t/lib/TestApp/View/Dump/False.pm
new file mode 100644 (file)
index 0000000..014337b
--- /dev/null
@@ -0,0 +1,8 @@
+package TestApp::View::Dump::False;
+
+use strict;
+use base qw[TestApp::View::Dump::Request];
+use overload
+    '""' => sub { undef; };
+
+1;