From: J. Shirley Date: Thu, 23 Aug 2007 22:31:02 +0000 (+0000) Subject: Adding the missing files, oops. X-Git-Tag: v0.14~27 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f52e8150a12e610774b713c93c24ac0082343d66;p=catagits%2FCatalyst-View-Email.git Adding the missing files, oops. --- diff --git a/t/lib/TestApp/View/Email/Template/AppConfig.pm b/t/lib/TestApp/View/Email/Template/AppConfig.pm new file mode 100644 index 0000000..487905e --- /dev/null +++ b/t/lib/TestApp/View/Email/Template/AppConfig.pm @@ -0,0 +1,8 @@ +package # Hide from PAUSE + TestApp::View::Email::Template::AppConfig; + +use Email::Send::Test; + +use base 'Catalyst::View::Email::Template'; + +1; diff --git a/t/root/text_html/test.m b/t/root/text_html/test.m new file mode 100644 index 0000000..b2a0922 --- /dev/null +++ b/t/root/text_html/test.m @@ -0,0 +1,11 @@ +<%args> +$time +$email + + + +

Look at my style

+

I was sent to <% $email->{to} %> on <% $time %>

+ + + diff --git a/t/root/text_plain/test.m b/t/root/text_plain/test.m new file mode 100644 index 0000000..2810e11 --- /dev/null +++ b/t/root/text_plain/test.m @@ -0,0 +1,8 @@ +<%args> +$time +$email + + +I am plain text. I have no style. + +I was sent to <% $email->{to} %> on <% $time %>