removed debug shit
[catagits/Catalyst-View-Email.git] / t / lib / TestApp.pm
index 1ef6b28..8412eb2 100644 (file)
@@ -5,8 +5,23 @@ use Catalyst;
 use FindBin;
 
 TestApp->config(
-    root => "$FindBin::Bin/root",
-    default_view => 'TT'
+    root            => "$FindBin::Bin/root",
+    default_view    => 'TT',
+    'View::Email::AppConfig' => {
+        sender => {
+            mailer => 'Test',
+        },
+    },
+    'View::Email::Template::AppConfig' => {
+        stash_key => 'template_email',
+        sender => {
+            mailer => 'Test',
+        },
+               content_type => 'text/html',
+        default => {
+            view => 'TT',
+        },
+    },
 );
 
 TestApp->setup;