diff options
author | Jamis Buck <jamis@37signals.com> | 2005-06-16 11:39:29 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-06-16 11:39:29 +0000 |
commit | 5ec990af9e348e245b6583c49bba90a00e50c6db (patch) | |
tree | 8ebf209203296d8b5f0671d771bab0e46af6cb77 /actionmailer/test/fixtures/helpers | |
parent | c2ed453880539fbc27fc0e00a95fbcf9949d0ed6 (diff) | |
download | rails-5ec990af9e348e245b6583c49bba90a00e50c6db.tar.gz rails-5ec990af9e348e245b6583c49bba90a00e50c6db.tar.bz2 rails-5ec990af9e348e245b6583c49bba90a00e50c6db.zip |
Helper support for ActionMailer
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1446 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/test/fixtures/helpers')
-rw-r--r-- | actionmailer/test/fixtures/helpers/test_helper.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionmailer/test/fixtures/helpers/test_helper.rb b/actionmailer/test/fixtures/helpers/test_helper.rb new file mode 100644 index 0000000000..f479820c96 --- /dev/null +++ b/actionmailer/test/fixtures/helpers/test_helper.rb @@ -0,0 +1,5 @@ +module TestHelper + def test_format(text) + "<em><strong><small>#{text}</small></strong></em>" + end +end |