Fix Catalyst::Dispatcher to handle a subclassless / COMPONENT-less View
[catagits/Catalyst-Runtime.git] / t / lib / TestAppOneView / View / Dummy.pm
index c579995..368d192 100644 (file)
@@ -8,6 +8,9 @@ sub COMPONENT {
 
 package AClass;
 
-use base 'Catalyst::View';
+### Turning this off on purpose to test out instances
+### without COMPONENT or subclassing
+
+#use base 'Catalyst::View';
 
 1;