aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/fixtures/helpers/example_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/test/fixtures/helpers/example_helper.rb')
-rw-r--r--actionmailer/test/fixtures/helpers/example_helper.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionmailer/test/fixtures/helpers/example_helper.rb b/actionmailer/test/fixtures/helpers/example_helper.rb
new file mode 100644
index 0000000000..d66927aa60
--- /dev/null
+++ b/actionmailer/test/fixtures/helpers/example_helper.rb
@@ -0,0 +1,5 @@
+module ExampleHelper
+ def example_format(text)
+ "<em><strong><small>#{text}</small></strong></em>"
+ end
+end